/* General Form Styles */
.form-group {
    padding-bottom: 10px;
}

.form-control {
    border: 1px solid #ccc; /* Grey border */
    border-radius: 5px; /* Rounded corners */
    transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #ff9800; /* Orange focus */
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.5); /* Orange glow */
}

.form-select:focus {
    border-color: #ff9800; /* Orange focus */
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.5); /* Orange glow */
}

/* Buttons */
.btn-primary {
    background-color: #ff9800; /* Orange */
    border-color: #ff9800;
    color: white;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #ff7800 !important;
    border-color: #ff7800 !important;
    color: white !important;
}

.btn-secondary {
    background-color: #575757; /* Dark Grey */
    border-color: #575757;
    color: white;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background-color: #424242 !important;
    border-color: #424242 !important;
    color: white !important;
}

button:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background-color: inherit !important;
    border-color: inherit !important;
    color: inherit !important;
}
	
.create-btn {
    background-color: white;
    color: #ff9800; /* Orange */
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid white;
    transition: 0.3s ease-in-out;
    display: inline-block;
    font-weight: 500;
}

.create-btn:hover {
    background-color: #ffd699; /* Light orange */
    color: #f57c00; /* Darker orange */
    border-color: #ffd699;
}

.btn-normal, .btn-outline-secondary {
    border: 1px solid #ccc;
    background-color: white;
    color: #1a1a1a;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn-normal:hover, .btn-outline-secondary:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
    color: #1a1a1a;
}

/* Tabs */
.nav-tabs .nav-link {
    color: #ff9800; /* Orange */
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #e64a19; /* Darker orange on hover */
}

.nav-tabs .nav-link.active {
    color: #424242; /* Dark grey */
}

/* Toast Notification */
.toast-container {
    z-index: 1050;
}

.toast {
    max-width: 350px;
    font-size: 14px;
}

/* Table Styles */
.preferences-table {
    margin-top: 20px;
}

.preferences-table thead {
 
    font-weight: bold;
}

.album-visual {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.album-cover {
    display: flex;
    border: 1px solid #ccc;
    width: 150px;
    height: 80px;
    position: relative;
}

.album-page {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.left-page {
    background-color: #f8f9fa;
    border-right: 1px solid #ccc;
}

.right-page {
    background-color: #f8f9fa;
}

.page-label {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.highlight {
    background-color: #d4edda !important;
}


/* General Container and Heading Styles */
.container-fluid {
    padding-left: 50px;
    padding-right: 50px;
    background-color: #fff;
}

.main-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.main-description {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* Save Button Styling */
.save-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #ff9800;
    color: #ff9800;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.save-btn:hover {
    background-color: #ff9800;
    color: #fff;
    border-color: #ff9800;
}

/* Steps Column */
.steps-column {
    padding: 20px;
	position: relative;
}

.steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
	position: relative;
}

.steps-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px; /* Matches step-number alignment */
    width: 1px;
    background-color: #dee2e6;
    z-index: 0;
}

.step-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
    color: #6c757d;
    font-weight: 500;
}

.step-item.active {
    font-weight: bold;
    color: orange;
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    background-color: #fff;
    border-radius: 50%;
    font-weight: bold;
    color: #6c757d;
	z-index: 1;
	border: 2px solid orange;
}

.step-item.active .step-number {
    background-color: orange;
    color: #fff;
}

/* Divider (Vertical Border) */
.center-divider {
    width: 1px;
    background-color: #dee2e6;
    padding: 0;
    margin: 0;
}
/* Right Column Heading */
.right-heading {
    margin-bottom: 40px;
}

.right-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.right-description {
    font-size: 13px;
    color: #7f8c8d;
}

/* DataTables Global Pagination Styling */
.dataTables_wrapper .dataTables_paginate .paginate_button.page-item.active .page-link {
    background-color: #ff9800 !important;
    border-color: #ff9800 !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.page-item .page-link {
    color: #575757 !important;
    border-radius: 4px;
    margin: 0 2px;
    padding: 0.25rem 0.6rem !important;
    font-size: 0.875rem !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.page-item .page-link:hover {
    background-color: #ffd699 !important;
    border-color: #ffd699 !important;
    color: #f57c00 !important;
}

/* Editable Links Modernization */
.editable-link {
    color: #333333 !important;
    text-decoration: none !important;
    border-bottom: 1px dashed var(--orange-color) !important;
    padding-bottom: 1px;
    transition: all 0.2s ease;
}

.editable-link:hover {
    color: var(--orange-color) !important;
    border-bottom-style: solid !important;
    text-decoration: none !important;
}

/* Fix for x-editable empty class */
.editable-empty, .editable-empty:hover, .editable-empty:focus {
    color: #dc3545 !important;
    font-style: italic;
    border-bottom: 1px dashed #dc3545 !important;
}

/* Modern Pill Tabs Override */
.nav-tabs.card-header-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs.card-header-tabs .nav-link {
    color: #6c757d;
    font-weight: 500;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-tabs.card-header-tabs .nav-link:hover {
    color: var(--orange-color);
    border-color: transparent !important;
}

.nav-tabs.card-header-tabs .nav-link.active {
    color: var(--orange-color) !important;
    border-bottom: 2px solid var(--orange-color) !important;
    background-color: transparent !important;
}