body {
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}

.back-link {
    color: #ff4040;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-container {
    max-width: 800px;
    margin: auto;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.profile-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.profile-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #ff4040;
}

.profile-info h2 {
    margin: 0;
    color: #ffcc00;
}

.profile-info p {
    margin-top: 5px;
    font-size: 0.95em;
    color: #cccccc;
}

.section {
    margin-top: 30px;
}

.section h3 {
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.favorites, .deliveries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card {
    background-color: #262626;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    width: 45%;
    color: #ffffff;
    cursor: pointer;
}

.card:hover {
    border-color: #ff4040;
    transition: 0.3s;
}

p {
    color: #dddddd;
}

@media (max-width: 600px) {
    .card {
    width: 100%;
    }

    .profile-header {
    flex-direction: column;
    align-items: flex-start;
    }

    .profile-header img {
    margin-bottom: 15px;
    margin-right: 0;
    }
}