body {
            background-color: #f8f9fa;
        }
        h1, h2 {
            margin-top: 20px;
            font-weight: bold;
        }
        .form-section, .table-section {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        .form-label {
            font-weight: 500;
        }
        .btn-custom {
            transition: all 0.2s ease;
        }
        .btn-custom:hover {
            transform: scale(1.03);
        }
        .table-responsive {
            max-height: 400px;
            overflow-y: auto;
        }