/* Стили для страницы успешного создания объявления */

.success-container {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #155724;
    font-size: 60px;
}

.success-title {
    font-size: 28px;
    font-weight: 600;
    color: #155724;
    margin-bottom: 20px;
}

.success-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.success-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 12px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-image-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-success {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
}

.btn-secondary {
    background: white;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.btn-secondary:hover {
    background: #6c757d;
    color: white;
}

@media (max-width: 768px) {
    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-success {
        width: 100%;
        max-width: 300px;
    }
}