/**
 * Frontend Styles for UTJD Grant & Expense Manager
 */

.utjd-gem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.utjd-gem-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.utjd-gem-card h3 {
    margin-top: 0;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.utjd-gem-table {
    width: 100%;
    border-collapse: collapse;
}

.utjd-gem-table th,
.utjd-gem-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.utjd-gem-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.utjd-gem-table tr:hover {
    background: #f9f9f9;
}

.utjd-gem-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.utjd-gem-button:hover {
    background: #005a87;
    color: white;
}

.utjd-gem-button.secondary {
    background: #666;
}

.utjd-gem-button.secondary:hover {
    background: #444;
}
