/* profile.css */

/* General Styles */
body {
    background-color: #121212; /* Dark background color */
    color: #e0e0e0; /* Light grey text color */
    font-family: 'Arial', sans-serif; /* Font style */
}

/* Container */
.container {
    margin-top: 30px;
}


/* Card Styles */
.card {
    border: 1px solid #1e1e1e; /* Dark border for the card */
    border-radius: 0.5rem; /* Rounded corners */
    background-color: #1e1e1e; /* Darker background for the card */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5); /* Enhanced shadow for depth */
    transition: transform 0.2s, box-shadow 0.2s; /* Transition effect on hover */
    margin-bottom: 20px; /* Space between cards */
}

.card:hover {
    transform: scale(1.02); /* Slightly enlarge card on hover */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7); /* Stronger shadow on hover */
}

.card-header {
    background-color: #1e90ff; /* Bright blue for card header */
    color: white;
    padding: 15px;
    font-size: 1.5rem;
    border-radius: 0.5rem 0.5rem 0 0; /* Rounded top corners */
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circular profile picture */
    border: 3px solid #1e90ff; /* Bright blue border */
    object-fit: cover; /* Ensures image covers the entire area */
    margin-right: 20px; /* Spacing between picture and details */
}

/* Button Styles */
.btn {
    padding: 10px 20px;
    border-radius: 0.25rem; /* Rounded corners */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s; /* Smooth transition */
    font-size: 1rem;
}

.btn-primary {
    background-color: #1e90ff; /* Bright blue for primary button */
    color: white;
}

.btn-primary:hover {
    background-color: #1c86e9; /* Slightly darker blue on hover */
    transform: scale(1.05); /* Slightly enlarge button on hover */
}

.btn-danger {
    background-color: #dc3545; /* Red for danger button */
    color: white;
}

.btn-danger:hover {
    background-color: #c82333; /* Darker red on hover */
}

.btn-link {
    background: none;
    border: none;
    color: #1e90ff; /* Bright blue for link button */
    cursor: pointer;
    text-decoration: none; /* Remove underline */
}

.btn-link:hover {
    text-decoration: underline; /* Underline on hover */
}

/* List Group Styles */
.list-group-item {
    background-color: #1e1e1e; /* Dark background for list items */
    color: #e0e0e0; /* Light grey text for list items */
    border: 1px solid #333; /* Dark border for list items */
    margin-bottom: 10px; /* Spacing between list items */
    padding: 15px; /* Padding for better spacing */
    border-radius: 0.25rem; /* Rounded corners */
    transition: background-color 0.2s, border-color 0.2s; /* Smooth transitions */
}

.list-group-item small {
    color: #9e9e9e; /* Lighter grey for small text */
}

/* Signature Section */
.signature-section {
    margin-top: 20px;
    background-color: #1e1e1e; /* Dark background for signature */
    padding: 15px; /* Padding for signature */
    border-radius: 0.5rem; /* Rounded corners */
}


/* Responsive Styles */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column; /* Stack elements on small screens */
        align-items: center;
    }
    .profile-picture {
        margin-bottom: 10px;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center; /* Center pagination links */
    margin-top: 15px; /* Margin above pagination */
}

.pagination a {
    color: #1e90ff; /* Bright blue for pagination links */
    margin: 0 5px; /* Margin between links */
    text-decoration: none; /* Remove underline from links */
}

.pagination a.active {
    font-weight: bold; /* Bold active link */
    text-decoration: underline; /* Underline for active link */
}

/* Scrollable Section */
.scrollable {
    max-height: 200px; /* Adjust height */
    overflow-y: auto; /* Enable vertical scrolling */
    border: 1px solid #333; /* Border around scrollable area */
    border-radius: 0.25rem; /* Rounded corners */
    margin-bottom: 20px; /* Space below scrollable area */
}

/* Hover Effects for List Items */
.list-group-item:hover {
    background-color: #272727; /* Darker background on hover */
    border-color: #444; /* Slightly lighter border on hover */
}
