﻿/*body {
    background-color: #f5f5f5;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}*/

/*.container {
    max-width: 1000px;
}*/

/* Step Card Styles */
.step-card {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

    .step-card.completed {
        border-left: 5px solid #28a745;
    }

    .step-card.pending {
        border-left: 5px solid #dc3545;
    }

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 15px;
    flex-shrink: 0;
}

    .step-number.completed {
        background: linear-gradient(135deg, #28a745, #20c997);
        color: white;
    }

    .step-number.pending {
        background: linear-gradient(135deg, #dc3545, #fd7e14);
        color: white;
    }

.status-completed {
    color: #28a745;
    font-weight: bold;
}

.status-pending {
    color: #dc3545;
    font-weight: bold;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-note {
    font-size: 0.9em;
    color: #6c757d;
    margin-top: 5px;
}

    .step-note.completed {
        color: #28a745;
    }

.action-buttons {
    margin-top: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .step-number {
        width: 35px;
        height: 35px;
        margin-right: 10px;
        font-size: 1em;
    }

    .step-title {
        font-size: 1em;
    }

    .step-card {
        margin-bottom: 10px;
    }
}

/* Table responsive fallback */
.table-responsive-fallback {
    display: none;
}

@media (min-width: 992px) {
    .table-responsive-fallback {
        display: block;
    }

    .cards-container {
        display: none;
    }
}






/* Custom Card Styles for Bootstrap 3 */
.custom-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

    .custom-card .card-header {
        background: linear-gradient(to right, #f8f9fa, #e9ecef);
        border-bottom: 1px solid #ddd;
        padding: 15px 20px;
        border-radius: 6px 6px 0 0;
    }

        .custom-card .card-header h4 {
            margin: 0;
            color: #333;
        }

    .custom-card .card-body {
        padding: 20px;
    }

/* Enhanced Panel Styles */
.panel-primary > .panel-heading {
    background: linear-gradient(135deg, #337ab7, #286090);
    border-color: #2e6da4;
}

.panel-info > .panel-heading {
    background: linear-gradient(135deg, #5bc0de, #46b8da);
    border-color: #46b8da;
}

/* Input Group Enhancements */
.input-group-addon {
    background: #f8f9fa;
    border-color: #ddd;
}

/* Form Control Enhancements */
.form-control:focus {
    border-color: #5cb85c;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 3px rgba(92,184,92,.1);
}

/* Help Block Styling */
.help-block {
    margin-top: 5px;
    margin-bottom: 0;
}

/* Readonly Input Styling */
input[readonly] {
    background-color: #f9f9f9 !important;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-horizontal .control-label {
        text-align: left;
        margin-bottom: 5px;
    }

    .form-horizontal .form-group {
        margin-left: 0;
        margin-right: 0;
    }

    .custom-card .card-body {
        padding: 15px;
    }
}


