/* Общие стили */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 450px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 20px;
}

/* Стили для информации */
.info {
    margin-top: 20px;
}

.info div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s ease-in-out forwards;
}

.info div:nth-child(1) { animation-delay: 0.2s; }
.info div:nth-child(2) { animation-delay: 0.4s; }
.info div:nth-child(3) { animation-delay: 0.6s; }
.info div:nth-child(4) { animation-delay: 0.8s; }

/* Метки и значения */
.info div span.label {
    font-size: 16px;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info div span.value {
    font-size: 16px;
    color: #718096;
    margin-left: auto;
}

/* Иконки */
.icon {
    font-size: 18px;
    color: #4fd1c5;
}

/* Стили для кнопки "Изменить" */
.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#edit-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #4fd1c5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#edit-button:hover {
    background-color: #38b2ac;
    transform: scale(1.05);
}

#edit-button i {
    margin-right: 8px;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}