﻿/* profile.css */

/* Загальний стиль картки профілю */
.profile-container {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 20px auto;
}

    .profile-container h2 {
        color: #004080;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .profile-container p {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
    }

    .profile-container .btn {
        border-radius: 8px;
        font-weight: 500;
        margin: 5px 5px 5px 0;
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .profile-container .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

/* Медіа-запит для мобільних */
@media (max-width: 576px) {
    .profile-container .btn {
        min-width: 100%;
    }
}
