
        .cv-form-container { 
            max-width: 700px; 
            margin: 30px auto; 
            padding: 30px; 
            border: 1px solid #e1e5e9; 
            border-radius: 8px; 
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .cv-form-group { 
            margin-bottom: 20px; 
        }
        .cv-form-label { 
            display: block; 
            margin-bottom: 8px; 
            font-weight: 600; 
            color: #2c3e50;
            font-size: 14px;
        }
        .cv-form-input, .cv-form-select { 
            width: 100%; 
            padding: 12px 15px; 
            border: 2px solid #e1e5e9; 
            border-radius: 6px; 
            font-size: 14px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }
        .cv-form-input:focus, .cv-form-select:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }
        .cv-form-submit { 
            background: linear-gradient(135deg, #3498db, #2980b9); 
            color: white; 
            padding: 15px 30px; 
            border: none; 
            border-radius: 6px; 
            cursor: pointer; 
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        .cv-form-submit:hover { 
            background: linear-gradient(135deg, #2980b9, #21618c);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }
        .cv-error { 
            color: #e74c3c; 
            background: #fdf2f2; 
            padding: 15px; 
            border-radius: 6px; 
            border-left: 4px solid #e74c3c;
            margin-bottom: 20px;
        }
        .cv-success { 
            color: #27ae60; 
            background: #f2fdf4; 
            padding: 15px; 
            border-radius: 6px; 
            border-left: 4px solid #27ae60;
            margin-bottom: 20px;
        }
        
        /* List Display Styles */
        .cv-list-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .cv-filter-form {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            border: 1px solid #e9ecef;
        }
        .cv-filter-group {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 15px;
            vertical-align: top;
        }
        .cv-filter-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #495057;
            font-size: 13px;
        }
        .cv-filter-group input, .cv-filter-group select {
            padding: 8px 12px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 14px;
            min-width: 150px;
        }
        .cv-filter-button {
            background: #007cba;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            margin-right: 10px;
        }
        .cv-filter-button:hover {
            background: #005a87;
        }
        .cv-list-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .cv-list-table th {
            background: #f1f3f4;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: #2c3e50;
            border-bottom: 2px solid #e9ecef;
        }
        .cv-list-table td {
            padding: 15px;
            border-bottom: 1px solid #e9ecef;
            vertical-align: middle;
        }
        .cv-list-table tr:hover {
            background: #f8f9fa;
        }
        .cv-list-table a {
            color: #007cba;
            text-decoration: none;
            font-weight: 500;
        }
        .cv-list-table a:hover {
            color: #005a87;
            text-decoration: underline;
        }
        .cv-pagination {
            text-align: center;
            margin-top: 30px;
        }
        .cv-pagination a {
            display: inline-block;
            padding: 10px 15px;
            margin: 0 5px;
            border: 1px solid #ddd;
            color: #007cba;
            text-decoration: none;
            border-radius: 4px;
        }
        .cv-pagination a:hover, .cv-pagination a.current {
            background: #007cba;
            color: white;
            border-color: #007cba;
        }
        