/* Base reset for the popup */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.notifylist-container {
    margin: 0 auto;
    text-align: center;
    max-width: 450px;
    box-sizing: border-box;
    padding: 35px 30px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.notifylist-success {
    padding: 20px 0;
}

.notifylist-success svg {
    margin-bottom: 15px;
}

.notifylist-success h3 {
    color: #4a6b53;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notifylist-success p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.notifylist-title {
    color: #000;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 10px;
}

.notifylist-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.4;
}

.notifylist-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.notifylist-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: 45px;
    transition: transform 0.2s;
}

.notifylist-social-btn:hover {
    transform: translateY(-1px);
}

.notifylist-social-btn:hover img {
    opacity: 0.8;
}

.notifylist-social-btn img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
}

.notifylist-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.notifylist-divider .line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.notifylist-divider span {
    padding: 0 15px;
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notifylist-form {
    margin: 0;
}

.notifylist-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.notifylist-input:focus {
    border-color: #4a6b53;
}

.notifylist-submit-btn {
    width: 100%;
    background: #4a6b53;
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(74, 107, 83, 0.3);
    font-size: 0.8rem;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, box-shadow 0.3s;
}

.notifylist-submit-btn:hover {
    background: #3a5441;
    box-shadow: 0 4px 15px rgba(74, 107, 83, 0.5);
}