/* General Styles */ body { font-family: 'Arial', sans-serif; background-color: #f8f9fa; } .container-fluid { padding: 2% 5%; } h2, h3 { color: #343a40; } /* Tables */ .table { background-color: #ffffff; border-radius: 5px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } .table th { background-color: #f8f9fa; } .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0,0,0,0.05); } /* Buttons */ .btn { border-radius: 3px; transition: background-color 0.3s, color 0.3s; } .btn-success:hover { background-color: #218838; color: #ffffff; } .btn-danger:hover { background-color: #c82333; color: #ffffff; } /* Alerts */ .alert { margin: 1% 5%; border-radius: 5px; }