/* General Styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Container for Sidebar and Content */
.container {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #2c3e50;
    color: #fff;
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-header .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.sidebar-header p {
    font-size: 14px;
    opacity: 0.8;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin-bottom: 20px;
}

.menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu li a i {
    margin-right: 15px;
    font-size: 18px;
}

.menu li a:hover {
    background-color: #1abc9c;
}

/* Submenu */
.submenu li {
    margin-left: 20px;
}

.submenu li a {
    font-size: 14px;
}

.submenu li a:hover {
    background-color: #16a085;
}

/* Main Content */
.content {
    width: calc(100% - 250px);
    padding: 30px;
    background-color: #fff;
    overflow-y: auto;
}

/* Page Title */
.content h1 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Card Styling */
.card {
    display: flex;
    flex-direction: row;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.card .photo img {
    width: 120px;
    height: 150px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.card .details {
    margin-left: 30px;
    flex: 1;
}

.card .details p {
    margin: 10px 0;
    font-size: 14px;
}

.card .details button {
    margin-right: 10px;
}

/* Buttons */
button {
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-red {
    background-color: #e74c3c;
    color: white;
}

.btn-red:hover {
    background-color: #c0392b;
}

.btn-blue {
    background-color: #3498db;
    color: white;
}

.btn-blue:hover {
    background-color: #2980b9;
}

.btn-green {
    background-color: #2ecc71;
    color: white;
}

.btn-green:hover {
    background-color: #27ae60;
}

.btn-orange {
    background-color: #e67e22;
    color: white;
}

.btn-orange:hover {
    background-color: #d35400;
}

.btn-purple {
    background-color: #9b59b6;
    color: white;
}

.btn-purple:hover {
    background-color: #8e44ad;
}

/* Validation Dropdown */
.validation {
    margin-top: 15px;
}

.validation select {
    padding: 10px;
    font-size: 14px;
    margin-right: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Hover Effect for Buttons */
button:hover {
    opacity: 0.9;
}

/* Sidebar Hover Effect */
.sidebar:hover {
    background-color: #34495e;
}
