/* Custom Styles for Kalekim Code Generator */

body {
    background-color: #f8f9fa;
}

/* Card Styles */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
}

/* Kendo Grid Styles */
.k-grid {
    border: none;
}

.k-grid td {
    padding: 8px 12px;
}

.k-grid th {
    font-weight: 600;
}

/* No wrap text for grid cells */
.no-wrap-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 600;
}

/* Button Styles */
.btn {
    border-radius: 6px;
}

/* Input Styles */
.form-control {
    border-radius: 6px;
}

/* Login Page Styles */
.card.shadow {
    border: none;
}

/* Badge Styles */
.badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

.badge-secondary {
    background-color: #6c757d;
    color: white;
}

/* Grid Checkbox Styles */
.k-grid .row-checkbox,
.k-grid #selectAll {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Responsive Adjustments */
@@media (max-width: 768px) {
    .card-body .row > div {
        margin-bottom: 10px;
    }

    .text-end {
        text-align: left !important;
        margin-top: 10px;
    }
}
