/* Auto-extracted from resources/views/institution-application/create.blade.php */

.form-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        padding: 10px;
    }
    .card-section {
        border-bottom: 1px solid #f0f0f0;
        padding: 25px;
    }
    .card-section:last-child {
        border-bottom: none;
    }
    .card-section h3 {
        color: #333;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 20px 0;
    }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    
    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #555;
        margin-bottom: 8px;
    }
    .required { color: #f44336; }
    
    input[type="text"], input[type="email"], input[type="number"], input[type="tel"], select, textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background: #fdfdfd;
        font-size: 14px;
        transition: 0.3s;
    }
    input:focus, select:focus, textarea:focus {
        border-color: #2971b7;
        box-shadow: 0 0 0 3px rgba(41, 113, 183, 0.1);
        outline: none;
    }
    textarea { height: 100px; resize: none; }
    
    .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .custom-checkbox {
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 30px;
        cursor: pointer;
        font-size: 14px;
        user-select: none;
    }
    .custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; }
    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #eee;
        border-radius: 4px;
    }
    .custom-checkbox:hover input ~ .checkmark { background-color: #ccc; }
    .custom-checkbox input:checked ~ .checkmark { background-color: #2971b7; }
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    .custom-checkbox input:checked ~ .checkmark:after { display: block; }
    .custom-checkbox .checkmark:after {
        left: 7px;
        top: 3px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    
    .upload-box {
        border: 2px dashed #ddd;
        border-radius: 12px;
        padding: 40px;
        background: #fafafa;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .upload-box:hover { border-color: #2971b7; background: #f0f7ff; }
    .btn-upload {
        background: #2971b7;
        color: white;
        border: none;
        padding: 8px 30px;
        border-radius: 6px;
        font-weight: 600;
        margin: 15px 0;
    }
    
    .accordion-item {
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 10px;
        overflow: hidden;
    }
    .accordion-header {
        padding: 15px 20px;
        background: #fff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        font-weight: 600;
        color: #444;
    }
    .accordion-header:hover { background: #f9f9f9; }
    .accordion-content {
        padding: 20px;
        background: #fafafa;
        display: none;
        border-top: 1px solid #eee;
    }
    
    .btn-add {
        background: #2971b7;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 6px;
        font-weight: 600;
        margin-top: 10px;
        cursor: pointer;
    }
    
    .btn-step-nav:hover { opacity: 0.9; transform: translateY(-1px); }
