/**
 * Bible Studies Modal Styles
 * ==========================
 * Styles for the Bible and Bible Study selection modal
 */

/* Bible Studies Modal Overlay */
.bible-studies-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    animation: fadeIn 0.2s ease-in-out;
}

.bible-studies-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Container */
.bible-studies-modal {
    background: linear-gradient(135deg, #f8f6fc 0%, #ebe7f2 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(157, 143, 201, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
    border: 2px solid #d4c8e8;
}

[data-theme="dark"] .bible-studies-modal {
    background: #000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid #2f2f2f;
}

/* Modal Header */
.bible-studies-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 2px solid #d4c8e8;
    background: rgba(157, 143, 201, 0.08);
}

[data-theme="dark"] .bible-studies-modal-header {
    border-bottom: 1px solid #2f2f2f;
    background: transparent;
}

.bible-studies-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

[data-theme="dark"] .bible-studies-modal-title {
    color: #ececf1;
}

.bible-studies-modal-title svg {
    color: #9d8fc9;
}

[data-theme="dark"] .bible-studies-modal-title svg {
    color: #b094c2;
}

.bible-studies-modal-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bible-studies-modal-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bible-studies-modal-close:hover {
    background: rgba(157, 143, 201, 0.15);
    color: #9d8fc9;
}

[data-theme="dark"] .bible-studies-modal-close {
    color: #8e8ea0;
}

[data-theme="dark"] .bible-studies-modal-close:hover {
    background: #2a2a2a;
    color: #ececf1;
}

/* Modal Content */
.bible-studies-modal-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: visible;
    padding: 24px 28px;
}

/* Navigation Breadcrumb */
.bible-studies-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #7c6ba8;
    font-size: 0.9rem;
}

.bible-studies-breadcrumb-item {
    cursor: pointer;
    transition: color 0.2s;
}

.bible-studies-breadcrumb-item:hover {
    color: #9d8fc9;
}

[data-theme="dark"] .bible-studies-breadcrumb {
    color: #8e8ea0;
}

[data-theme="dark"] .bible-studies-breadcrumb-item:hover {
    color: #9d8fc9;
}

.bible-studies-breadcrumb-separator {
    color: #cbd5e1;
}

[data-theme="dark"] .bible-studies-breadcrumb-separator {
    color: #565869;
}

/* Action Buttons */
.bible-studies-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.bible-study-action-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #1e293b;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bible-study-action-btn:hover {
    background: rgba(157, 143, 201, 0.1);
    border-color: #9d8fc9;
    color: #9d8fc9;
}

.bible-study-action-btn.primary {
    background: linear-gradient(135deg, #9d8fc9 0%, #8a7a9a 100%);
    color: white;
    border-color: #9d8fc9;
    box-shadow: 0 2px 8px rgba(157, 143, 201, 0.3);
}

.bible-study-action-btn.primary:hover {
    background: linear-gradient(135deg, #b094c2 0%, #9d8fc9 100%);
    box-shadow: 0 4px 12px rgba(157, 143, 201, 0.4);
}

.bible-study-action-btn.active {
    background: #9d8fc9;
    color: white;
    border-color: #9d8fc9;
}

.bible-study-action-btn.active:hover {
    background: #b094c2;
}

.bible-study-action-btn.delete-selected {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.bible-study-action-btn.delete-selected:hover {
    background: #b91c1c;
}

[data-theme="dark"] .bible-study-action-btn {
    background: #212121;
    border-color: #2f2f2f;
    color: #ececf1;
}

[data-theme="dark"] .bible-study-action-btn:hover {
    background: #2a2a2a;
    border-color: #3f3f3f;
    color: #ececf1;
}

/* Selection Mode Toggle - in header */
.selection-mode-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-size: 0.85rem;
    color: #64748b;
    transition: color 0.2s;
    white-space: nowrap;
}

.selection-mode-toggle:hover {
    color: #1e293b;
}

[data-theme="dark"] .selection-mode-toggle {
    color: #94a3b8;
}

[data-theme="dark"] .selection-mode-toggle:hover {
    color: #f1f5f9;
}

.selection-mode-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #9d8fc9;
}

.selection-mode-toggle span {
    font-weight: 500;
}

/* Delete Selected Button - in header */
.delete-selected-btn {
    padding: 6px 12px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.delete-selected-btn:hover {
    background: #dc2626;
    color: white;
}

[data-theme="dark"] .delete-selected-btn {
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
}

[data-theme="dark"] .delete-selected-btn:hover {
    background: #dc2626;
    color: white;
}

[data-theme="dark"] .bible-study-action-btn.primary {
    background: linear-gradient(135deg, #9d8fc9 0%, #8a7a9a 100%);
    border-color: #9d8fc9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .bible-study-action-btn.primary:hover {
    background: linear-gradient(135deg, #b094c2 0%, #9d8fc9 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* List Items */
.bible-studies-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
}

.bible-study-item {
    padding: 12px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: visible;
}

/* Compact Bible Item Styling */
.bible-item-compact {
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 249, 246, 0.95));
    border: 1px solid rgba(157, 143, 201, 0.15);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.bible-item-compact:not(.selection-mode):hover {
    background: linear-gradient(135deg, rgba(250, 249, 246, 1), rgba(248, 246, 255, 0.98));
    border-color: rgba(157, 143, 201, 0.3);
    box-shadow: 0 2px 6px rgba(157, 143, 201, 0.12);
    transform: translateY(-1px);
}

[data-theme="dark"] .bible-item-compact {
    background: #212121;
    border: 1px solid #2f2f2f;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .bible-item-compact:not(.selection-mode):hover {
    background: #2a2a2a;
    border-color: #3f3f3f;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Single Row Layout */
.bible-study-item-single-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.bible-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.bible-icon {
    color: #9d8fc9;
    flex-shrink: 0;
}

[data-theme="dark"] .bible-icon {
    color: #b8a8e0;
}

.bible-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.meta-count-compact {
    padding: 4px 10px;
    background: rgba(157, 143, 201, 0.1);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.75rem;
    color: #7c6ba8;
    white-space: nowrap;
    border: 1px solid rgba(157, 143, 201, 0.15);
}

[data-theme="dark"] .meta-count-compact {
    background: rgba(157, 143, 201, 0.15);
    color: #b8a8e0;
    border-color: rgba(157, 143, 201, 0.25);
}

/* Three-dot menu button */
.bible-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.bible-menu-btn {
    display: none;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}

.bible-study-item:hover .bible-menu-btn {
    display: flex;
}

.bible-menu-btn:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #1e293b;
}

[data-theme="dark"] .bible-menu-btn {
    color: #94a3b8;
}

[data-theme="dark"] .bible-menu-btn:hover {
    background: rgba(148, 163, 184, 0.15);
    color: #f1f5f9;
}

/* Context menu */
.bible-context-menu {
    position: absolute;
    top: 100%;
    right: auto;
    left: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    z-index: 1000;
    overflow: hidden;
}

/* Fix for menus at bottom - allow upward opening */
.bible-study-item:nth-last-child(-n+2) .bible-context-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 4px;
}

[data-theme="dark"] .bible-context-menu {
    background: #1e293b;
    border-color: #334155;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.bible-context-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.1s;
}

.bible-context-menu-item:hover {
    background: #f3f4f6;
}

.bible-context-menu-item.delete {
    color: #dc2626;
}

.bible-context-menu-item.delete:hover {
    background: #fee2e2;
}

[data-theme="dark"] .bible-context-menu-item {
    color: #e5e7eb;
}

[data-theme="dark"] .bible-context-menu-item:hover {
    background: #334155;
}

[data-theme="dark"] .bible-context-menu-item.delete {
    color: #fca5a5;
}

[data-theme="dark"] .bible-context-menu-item.delete:hover {
    background: rgba(220, 38, 38, 0.2);
}

.bible-context-menu-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bible-study-item.selection-mode {
    cursor: pointer;
}

.bible-study-item.selection-mode:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.bible-study-item.selected {
    background: rgba(157, 143, 201, 0.15);
    border-color: #9d8fc9;
    box-shadow: 0 0 0 2px rgba(157, 143, 201, 0.2);
}

.bible-study-item:not(.selection-mode):hover {
    background: #fafbfc;
    border-color: #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .bible-study-item {
    background: #212121;
    border: 1px solid #2f2f2f;
}

[data-theme="dark"] .bible-study-item.selection-mode:hover {
    background: #2a2a2a;
    border-color: #3f3f3f;
}

[data-theme="dark"] .bible-study-item.selected {
    background: #2a2a2a;
    border-color: #9d8fc9;
    box-shadow: 0 0 0 1px rgba(157, 143, 201, 0.3);
}

[data-theme="dark"] .bible-study-item:not(.selection-mode):hover {
    background: #2a2a2a;
    border-color: #3f3f3f;
}

.bible-study-checkbox-wrapper {
    display: flex;
    align-items: center;
}

.bible-study-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #9d8fc9;
}

.bible-study-item-content {
    flex: 1;
    min-width: 0;
}

.bible-study-delete-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: #94a3b8;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
    opacity: 0;
}

.bible-study-item:hover .bible-study-delete-btn {
    opacity: 1;
}

.bible-study-delete-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

[data-theme="dark"] .bible-study-delete-btn {
    color: #64748b;
}

[data-theme="dark"] .bible-study-delete-btn:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
}

.bible-study-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.bible-study-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bible-item-compact .bible-study-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3748;
}

[data-theme="dark"] .bible-study-item-name {
    color: #ececf1;
}

[data-theme="dark"] .bible-item-compact .bible-study-item-name {
    color: #ececf1;
}

.bible-study-item-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
}

.bible-study-item-meta .meta-count {
    padding: 2px 6px;
    background: #f1f5f9;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.75rem;
}

[data-theme="dark"] .bible-study-item-meta {
    color: #8e8ea0;
}

[data-theme="dark"] .bible-study-item-meta .meta-count {
    background: #2a2a2a;
    color: #ececf1;
}

.bible-study-item-description {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 4px 0 0 0;
    line-height: 1.4;
}

[data-theme="dark"] .bible-study-item-description {
    color: #8e8ea0;
}

/* Empty State */
.bible-studies-empty {
    text-align: center;
    padding: 40px 20px;
}

.bible-studies-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.bible-studies-empty-text {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Form Styles */
.bible-study-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bible-study-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bible-study-form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
}

[data-theme="dark"] .bible-study-form-label {
    color: #ececf1;
}

.bible-study-form-input,
.bible-study-form-textarea,
.bible-study-form-select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
    color: #1e293b;
}

/* Button styled like a select for translation selection */
.bible-study-form-select-btn {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.bible-study-form-select-btn:hover {
    border-color: #9d8fc9;
    background: #f8f6fc;
}

.bible-study-form-select-btn:focus {
    outline: none;
    border-color: #9d8fc9;
    box-shadow: 0 0 0 3px rgba(157, 143, 201, 0.15);
}

.bible-study-form-select-btn svg {
    flex-shrink: 0;
    opacity: 0.6;
}

[data-theme="dark"] .bible-study-form-select-btn {
    background: #212121;
    border: 1px solid #2f2f2f;
    color: #ececf1;
}

[data-theme="dark"] .bible-study-form-select-btn:hover {
    border-color: #9d8fc9;
    background: #2a2a2a;
}

[data-theme="dark"] .bible-study-form-select-btn:focus {
    border-color: #9d8fc9;
    background: #2a2a2a;
}

.bible-study-form-input:focus,
.bible-study-form-textarea:focus,
.bible-study-form-select:focus {
    outline: none;
    border-color: #9d8fc9;
    box-shadow: 0 0 0 3px rgba(157, 143, 201, 0.15);
}

[data-theme="dark"] .bible-study-form-input,
[data-theme="dark"] .bible-study-form-textarea,
[data-theme="dark"] .bible-study-form-select {
    background: #212121;
    border: 1px solid #2f2f2f;
    color: #ececf1;
}

[data-theme="dark"] .bible-study-form-input:focus,
[data-theme="dark"] .bible-study-form-textarea:focus,
[data-theme="dark"] .bible-study-form-select:focus {
    border-color: #9d8fc9;
    background: #2a2a2a;
}

.bible-study-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.bible-study-form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.bible-study-form-buttons button {
    flex: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Quick Save Modal Styles */
.quick-save-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001; /* Higher than main modal */
    animation: fadeIn 0.2s ease-in-out;
}

.quick-save-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-save-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 500px;
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

[data-theme="dark"] .quick-save-modal {
    background: #1e293b;
}

.quick-save-modal-header {
    padding: 28px 28px 20px 28px;
    border-bottom: 1px solid #e2e8f0;
}

[data-theme="dark"] .quick-save-modal-header {
    border-bottom-color: #334155;
}

.quick-save-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

[data-theme="dark"] .quick-save-modal-title {
    color: #f1f5f9;
}

.quick-save-modal-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

[data-theme="dark"] .quick-save-modal-subtitle {
    color: #94a3b8;
}

.quick-save-modal-content {
    padding: 24px 28px 28px 28px;
}

.quick-save-form-group {
    margin-bottom: 20px;
}

.quick-save-form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 8px;
}

[data-theme="dark"] .quick-save-form-label {
    color: #ececf1;
}

.quick-save-form-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s;
    background: white;
    color: #1e293b;
    box-sizing: border-box;
}

.quick-save-form-input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

[data-theme="dark"] .quick-save-form-input {
    background: #212121;
    border: 1px solid #2f2f2f;
    color: #ececf1;
}

[data-theme="dark"] .quick-save-form-input:focus {
    border-color: #9d8fc9;
    background: #2a2a2a;
    box-shadow: none;
}

.quick-save-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
}

[data-theme="dark"] .quick-save-info {
    background: #0f172a;
    border-color: #334155;
}

.quick-save-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 8px;
}

.quick-save-info-item:last-child {
    margin-bottom: 0;
}

[data-theme="dark"] .quick-save-info-item {
    color: #94a3b8;
}

.quick-save-info-item svg {
    flex-shrink: 0;
    color: #9333ea;
}

[data-theme="dark"] .quick-save-info-item svg {
    color: #a855f7;
}

.quick-save-form-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.quick-save-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-save-btn.cancel {
    background: #f3e8ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}

.quick-save-btn.cancel:hover {
    background: #e9d5ff;
    color: #6b21a8;
    border-color: #d8b4fe;
}

[data-theme="dark"] .quick-save-btn.cancel {
    background: #2e1065;
    color: #c4b5fd;
    border: 1px solid #4c1d95;
}

[data-theme="dark"] .quick-save-btn.cancel:hover {
    background: #3730a3;
    color: #ddd6fe;
    border-color: #5b21b6;
}

.quick-save-btn.primary {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    color: white;
    border: 1px solid transparent;
}

.quick-save-btn.primary:hover {
    background: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.quick-save-btn.primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bible-studies-modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .bible-studies-modal-header,
    .bible-studies-modal-content {
        padding: 20px;
    }
    
    .bible-studies-modal-title {
        font-size: 1.3rem;
    }
    
    .bible-studies-actions {
        flex-direction: column;
    }
    
    .quick-save-modal {
        width: 95%;
    }
    
    .quick-save-modal-header,
    .quick-save-modal-content {
        padding: 20px;
    }
    
    .quick-save-form-buttons {
        flex-direction: column;
    }
    
    .quick-save-btn {
        width: 100%;
        justify-content: center;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

