/* Container Styling */
.g-source-banner {
    background-color: #fb56212b !important; /* Google Dark Grey */
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 700px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0px 0px 20px;
    color: #ffffff;
    text-decoration: none;
}
.g-add-btn:hover {
    background-color: #ffffff !important;
    color: #fb5621;
}
/* Left Side: Logo and Text */
.g-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Google Logo Placeholder */
.g-logo-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Text Group */
.g-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.g-subtext {
    font-size: 14px;
    color: #5f5f5f; /* Light grey text */
    margin: 0;
    padding: 0;
}

.g-maintext {
    font-size: 18px;
    font-weight: 500;
    color: #000 !important;
    margin: 0;
    line-height: 1.2;
}

.g-orange {
    color: #fb5621; /* Google Orange for Dark Mode */
}

/* Button Styling */
.g-add-btn {
    background-color: #ffffff;
    color: #202124;
    padding: 8px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background-color 0.2s;
    margin-left: 20px;
}

.g-add-btn:hover {
    background-color: #e8eaed;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .g-source-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .g-add-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}