/* Subscription Success Page Styles */
.subscription-success {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.subscription-success h2 {
    color: #2e7d32;
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.subscription-details {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 20px;
}

.subscription-details h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.subscription-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.subscription-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.subscription-details li:last-child {
    border-bottom: none;
}

.subscription-details strong {
    display: inline-block;
    min-width: 120px;
    color: #555;
}

.subscription-message {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.subscription-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.subscription-message.warning {
    background-color: #fff8e1;
    color: #ff8f00;
    border: 1px solid #ffe0b2;
}

.subscription-success .button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
}

.subscription-success .button:hover {
    background-color: #45a049;
    color: white;
}

.subscription-success p:last-child {
    text-align: center;
    margin-top: 20px;
} 