/* public/css/custom.css */

/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.card {
    margin-top: 50px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-block {
    width: 100%;
}

/* Additional styles for better appearance */
.invalid-feedback {
    color: #dc3545;
}
/* custom.css */

/* Style for the dropdown toggle */
.navbar .dropdown-toggle {
    color: #4b4b4b; /* Darker color for better visibility */
    font-weight: bold;
}

/* Style for the dropdown menu */
.navbar .dropdown-menu {
    background-color: #f8f9fa; /* Light background color */
    border: 1px solid #ddd; /* Light border */
    border-radius: 0.25rem; /* Rounded corners */
}

/* Style for dropdown items */
.navbar .dropdown-item {
    color: #333; /* Dark text color */
    padding: 10px 20px; /* Increased padding for better touch targets */
    transition: background-color 0.3s; /* Smooth background color transition */
}

/* Hover effect for dropdown items */
.navbar .dropdown-item:hover {
    background-color: #007bff; /* Bootstrap primary color */
    color: #fff; /* White text color on hover */
}

/* Style for the logout button */
.navbar .dropdown-item.logout-btn {
    font-weight: bold;
    color: #dc3545; /* Bootstrap danger color */
}

/* Hover effect for the logout button */
.navbar .dropdown-item.logout-btn:hover {
    background-color: #dc3545;
    color: #fff;
}
/* custom.css */

/* Custom width for the dropdown menu */
.navbar .dropdown-menu {
    min-width: 200px; /* Set the minimum width */
}
.form-container {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.tabs-container {
    width: 25%;
    border-right: 2px solid #007bff;
    padding-right: 20px;
}

.tabs {
    list-style: none;
    padding: 0;
}

.tab {
    padding: 10px;
    margin-bottom: 5px;
    background-color: #e9ecef;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab.active {
    background-color: #007bff;
    color: #fff;
}

.content-container {
    width: 75%;
    padding-left: 20px;
}

.step-content {
    display: none;
    margin-bottom: 20px;
}

.step-content.active {
    display: block;
}

.form-navigation {
    margin-top: 20px;
    text-align: center;
}

.form-navigation button {
    margin: 0 10px;
}

input[readonly], textarea[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}
.logo-img {
    max-width: 150px;  /* Adjust as needed */
    height: auto;      /* Maintain aspect ratio */
}
