body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #003366;
    position: relative;
    padding: 10px 20px;
    
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    margin: 0;
    color: white;
}

.logout-button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    border: 1px solid currentColor;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background-color: white;
    color: #003366;
}

.profile-container {
    max-width: 600px;
    margin: 30px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #003366, #005588);
    color: white;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 15px;
}

.profile-header h2 {
    margin: 10px 0 0;
    font-size: 1.8rem;
}

.profile-details {
    padding: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.detail-item i {
    width: 30px;
    color: #003366;
    font-size: 1.2rem;
}

.detail-item p {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.profile-actions {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #eee;
}

button {
    flex: 1;
    margin: 0 10px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

button i {
    margin-right: 8px;
}

.btn-edit {
    background: #28a745;
    color: white;
}

.btn-edit:hover {
    background: #218838;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-delete:hover {
    background: #c82333;
}

.navigation {
    background-color: #003366;
    padding: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 20px;
    flex: 1;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 14px;
}

.navigation a:hover,
.navigation a.active {
    background-color: #005580;
}

@media (max-width: 768px) {
    .profile-container {
        margin: 20px;
    }
    
    .profile-header {
        padding: 20px;
    }
    
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    
    .profile-header h2 {
        font-size: 1.5rem;
    }
    
    .detail-item p {
        font-size: 0.9rem;
    }
    
    button {
        font-size: 0.9rem;
        padding: 10px;
    }
}
