/* Auto-extracted from resources/views/colleges/index.blade.php */

.filter-section {
        background: white;
        padding: 28px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 40px;
    }

    .filter-form {
        display: flex;
        gap: 15px;
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .filter-form .field {
        flex: 1;
        min-width: 200px;
    }

    .filter-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

    .filter-form select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
    }

    .filter-actions {
        display: flex;
        gap: 10px;
    }

    .colleges-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .college-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .college-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .college-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .college-card-placeholder {
        width: 100%;
        height: 200px;
        background: #e9ecef;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .college-card-placeholder i {
        font-size: 48px;
        color: #adb5bd;
    }

    .college-card-body {
        padding: 25px;
    }

    .college-badge {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .college-badge.affiliation {
        background: #e3f2fd;
        color: #2971b7;
    }

    .college-badge.program {
        background: #fff3cd;
        color: #856404;
        margin-left: 5px;
    }

    .college-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .college-meta {
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
        color: #666;
        font-size: 14px;
        gap: 10px;
    }

    .college-meta i {
        margin-top: 3px;
        color: #2971b7;
        width: 14px;
    }

    .colleges-empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 40px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

