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

.admin-table thead tr {
    border-bottom: 2px solid #e2e8f0;
}

.admin-table th {
    text-align: left;
    padding: 0.75rem;
    color: #64748b;
}

.admin-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
}

.admin-table td {
    padding: 0.75rem;
}

.admin-actions a {
    margin-left: 1rem;
}

.admin-actions a:first-child {
    margin-left: 0;
}

.admin-empty-state {
    color: #64748b;
}

.image-upload-box {
    position: relative;
    width: 150px;
    height: 100px;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.image-upload-box:hover {
    border-color: #3b82f6;
    background-color: #f9fafb;
}

.image-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.image-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    pointer-events: none;
}

.upload-icon {
    font-size: 2rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.upload-text {
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
    padding: 0 0.5rem;
}

.form-group {
    width: 100%;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.form-text-muted {
    color: #666;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #1f2937;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.15s;
}

.form-control:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-actions {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-primary {
    color: #fff;
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary {
    color: #374151;
    background-color: #fff;
    border-color: #d1d5db;
    margin-left: 0.5rem;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.group-row {
    display: flex;
    justify-content: space-between;
    gap: 10%;
}

.image-preview-container {
    margin-bottom: 1rem;
}

.image-preview {
    max-width: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-text-block {
    display: block;
    margin-top: 0.5rem;
}

input[type="file"].file-input-clean {
    border: none;
    padding: 0;
}
