
        body { font-family: Arial, sans-serif; padding: 20px; }
        table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
        th, td { border: 1px solid #aaa; padding: 8px 10px; text-align: left; }
        th { background-color: #790502; color: white; }
        tr:nth-child(even) { background-color: #f9f9f9; }
        .action-btn {
            margin-right: 5px;
            padding: 7px 18px;
            font-size: 1em;
            font-weight: bold;
            border: none;
            border-radius: 18px;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .save-btn {
            background-color: #c5120c;
            color: #fff;
            border-radius:12px;
            
        }
        .save-btn:hover {
            background-color: #555;
            color: #fff;
        }

        .cancel-btn {
            background-color: #888;
            color: #fff;
            border-radius:12px;
        }
        .cancel-btn:hover {
            background-color: #888;
            color: #fff;
        }

        .edit-btn {
            background-color: #c5120c;
            color: white;
            border-radius:12px;
        }
        .edit-btn:hover {
            background-color: white;
            color: black;
        }

        .delete-btn {
            background-color: #888;
            color: #fff;
            border-radius:12px;
        }
        .delete-btn:hover {
            background-color: #555;
            color: #fff;
        }
        .back-home-btn {
            background: #fff;
            color: #2196f3;
            border: 2px solid #2196f3;
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, border 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            min-width: 140px;
            display: inline-block;
        }
        .back-home-btn:hover {
            background: #e3f2fd;
            color: #1565c0;
            border-color: #1565c0;
        }
