<style>
        /* Records page specific styles */
        .records-container {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .records-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 15px;
        }
        
        .records-header h1 {
            font-size: 24px;
            color: #333;
            margin: 0;
        }
        
        .add-record-btn {
            background-color: #4285F4;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: background-color 0.2s;
        }
        
        .add-record-btn:hover {
            background-color: #3367D6;
        }
        
        .add-record-btn i {
            margin-right: 8px;
        }
        
        .search-bar {
            display: flex;
            margin-bottom: 20px;
        }
        
        .search-bar input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .search-bar button {
            background-color: #4285F4;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 0 15px;
            cursor: pointer;
        }
        
        .search-bar button:hover {
            background-color: #3367D6;
        }
        
        .filter-options {
            display: flex;
            margin-bottom: 20px;
            gap: 10px;
        }
        
        .filter-btn {
            background-color: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 6px 12px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .filter-btn.active {
            background-color: #4285F4;
            color: white;
            border-color: #4285F4;
        }
        
        .filter-btn:hover:not(.active) {
            background-color: #e9e9e9;
        }
        
        .records-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .records-table th {
            text-align: left;
            padding: 12px 15px;
            background-color: #f8f9fa;
            border-bottom: 2px solid #eaeaea;
            color: #5f6368;
            font-weight: 600;
        }
        
        .records-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eaeaea;
            color: #3c4043;
        }
        
        .records-table tr:hover {
            background-color: #f8f9fa;
        }
        
        .action-buttons {
            display: flex;
            gap: 8px;
        }
        
        .action-btn {
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #5f6368;
            padding: 4px;
            border-radius: 4px;
        }
        
        .action-btn:hover {
            background-color: #f1f3f4;
        }
        
        .view-btn:hover {
            color: #4285F4;
        }
        
        .edit-btn:hover {
            color: #34A853;
        }
        
        .delete-btn:hover {
            color: #EA4335;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }
        
        .pagination-btn {
            background-color: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 5px 10px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .pagination-btn:hover {
            background-color: #e9e9e9;
        }
        
        .pagination-btn.active {
            background-color: #4285F4;
            color: white;
            border-color: #4285F4;
        }
        
        .pagination-text {
            padding: 5px 10px;
            color: #5f6368;
        }
        
        .empty-state {
            text-align: center;
            padding: 40px 0;
            color: #5f6368;
        }
        
        .empty-state i {
            font-size: 48px;
            color: #dadce0;
            margin-bottom: 16px;
        }
        
        .empty-state p {
            margin: 8px 0;
        }
        
        .loading-state {
            text-align: center;
            padding: 40px 0;
            color: #5f6368;
        }
        
        .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border-left: 4px solid #4285F4;
            animation: spin 1s linear infinite;
            margin: 0 auto 16px;
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .modal-content {
            background-color: #fff;
            margin: 10% auto;
            padding: 20px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .modal-header h2 {
            margin: 0;
            color: #202124;
            font-size: 20px;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #5f6368;
        }
        
        .close-btn:hover {
            color: #202124;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #5f6368;
            font-size: 14px;
        }
        
        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #dadce0;
            border-radius: 4px;
            font-size: 14px;
            transition: border-color 0.2s;
        }
        
        .form-control:focus {
            border-color: #4285F4;
            outline: none;
        }
        
        .form-error {
            color: #EA4335;
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }
        
        .modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .cancel-btn {
            background-color: #f5f5f5;
            color: #3c4043;
            border: 1px solid #dadce0;
            border-radius: 4px;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .cancel-btn:hover {
            background-color: #e9e9e9;
        }
        
        .save-btn {
            background-color: #4285F4;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 8px 16px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .save-btn:hover {
            background-color: #3367D6;
        }
        
        /* View Record Modal */
        .view-record-details {
            margin-bottom: 20px;
        }
        
        .detail-item {
            margin-bottom: 15px;
        }
        
        .detail-label {
            font-weight: 600;
            color: #5f6368;
            font-size: 14px;
            margin-bottom: 4px;
        }
        
        .detail-value {
            color: #3c4043;
            font-size: 16px;
        }
        
        /* Delete confirmation modal */
        .delete-modal .modal-content {
            max-width: 400px;
        }
        
        .delete-modal-message {
            margin-bottom: 20px;
            color: #3c4043;
        }
        
        .delete-btn-modal {
            background-color: #EA4335;
            color: white;
        }
        
        .delete-btn-modal:hover {
            background-color: #d33426;
        }
    </style>
</head>