@import "tailwindcss"; .table { text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; width: 40%; border: 1px solid #e0e0e0; border-radius: 6px; margin-top: 30px; background-color: #fafafa; } .table-header, .table-row { display: flex; padding: 12px; border-bottom: 1px solid #eaeaea; } .cell { display: flex; flex: 1; padding: 8px 12px; align-items: center; } .table-header { background-color: #f5f7fa; font-weight: 600; color: #a51010; } .btn { text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); display: inline-block; background-color: #b7e1ff; color: #0f0f0f; padding: 1px 10px; margin-right: 8px; border: none; border-radius: 6px; text-decoration: none; font-size: 14px; cursor: pointer; transition: background-color 0.3s ease; } .btn:hover { background-color: #f6fafe; }