/* ==========================================================================
   STRUCTURAL LAYOUT FRAMEWORK (UTILITY DEFAULT FALLBACKS)
   Project: Related Keywords User Dashboard Spreadsheet Grid
   Author: JP Rose - https://kointool.com
   ========================================================================== */

/* Outer Canvas Container Frame Wrapper */
.kt-workspace-container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Control Row Module Layout (Search and Action Bar Setup) */
.kt-search-block {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Base Input Element Structure */
.kt-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Base Button Action Element Structure */
.kt-btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Spreadsheet Grid Block Layout Window */
.kt-grid-block {
    width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
}

/* Clean Ledger Table Representation Structure */
.kt-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    box-sizing: border-box;
}

/* Grid Cell Metric Alignment Structural Foundations */
.kt-th, .kt-td {
    padding: 14px 16px;
    border-bottom: 1px solid;
    box-sizing: border-box;
}

.kt-th {
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* Sorting Direction Anchor Hints */
.kt-th[data-sort]::after {
    content: ' ↕';
    font-size: 0.8em;
    opacity: 0.5;
}

/* Interactive Action Icon Triggers */
.kt-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.kt-delete-btn:hover {
    transform: scale(1.15);
}

/* System Alerts Feedback Containers */
.kt-auth-alert {
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
}