.profile-container {
    display: flex;
    flex-direction: column;
}

.profile-head {
    color: #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to top, #111a29, #183451);
}

.profile-main {
    color: #ccc;
    padding: 20px;
    margin: 20px 0px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to top, #111a29, #183451);
}

.profile-box {
    padding: 20px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.profile-header h1 {
    margin: 0;
    color: #ccc;
}

.profile-details {
    margin-top: 20px;
    flex: 1;
}

.profile-details p {
    margin: 10px 0;
    font-size: 16px;
    color: #ccc;
}

.edit-profile-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.edit-profile-btn:hover {
    background-color: #0056b3;
}

.error-box {
    background-color: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
}

.error-box a {
    display: block;
    margin-top: 10px;
    color: #d32f2f;
    text-decoration: none;
}
