/* Base Styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Card enhancements */
.card {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.card-header {
    font-weight: 500;
}

/* Checklist styling */
.checklist-item {
    border-left: 3px solid #6c757d;
    transition: border-color 0.3s;
}

.checklist-item:hover {
    border-left-color: #0d6efd;
}

.checklist-item.completed {
    border-left-color: #198754;
    background-color: rgba(25, 135, 84, 0.1);
}

/* Progress bar styling */
.progress {
    height: 10px;
    margin-top: 10px;
}

/* Item description modal */
.modal-body img,
.modal-body video {
    max-width: 100%;
}

/* Sortable drag styling */
.sortable-ghost {
    opacity: 0.5;
    background-color: #f8f9fa;
}

/* Tag styling */
.tag-badge {
    margin-right: 5px;
    cursor: pointer;
}

/* Eye icon styling */
.item-detail-btn {
    color: #0d6efd;
    cursor: pointer;
}

.item-detail-btn:hover {
    color: #0a58ca;
}

/* Instructions card styling */
#instructionsCollapse .card-title {
    font-weight: 600;
}

#instructionsCollapse .fas.fa-1,
#instructionsCollapse .fas.fa-2,
#instructionsCollapse .fas.fa-3,
#instructionsCollapse .fas.fa-4 {
    background-color: #e9ecef;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

#instructionsCollapse .nav-tabs .nav-link {
    font-weight: 500;
}

#instructionsCollapse .alert {
    margin-bottom: 0;
}

#instructionsCollapse ol li,
#instructionsCollapse ul li {
    margin-bottom: 8px;
}

#instructionsCollapse .border-primary,
#instructionsCollapse .border-success {
    border-width: 2px !important;
}
