/* Kill theme spacing */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

.site,
.site-content,
.site-main,
.entry-content,
.page,
#page {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
}
.ims-view h1 {
    margin-bottom: 20px;
}


#ims-app {
    display: flex;
    height: 100vh;
    width: 100vw;
    background: #f8fafc;
    overflow: hidden;
}


.ims-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #0b1220, #0f172a);
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.ims-logo {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

.ims-sidebar ul {
    list-style: none;
    padding: 0;
}

.ims-sidebar li {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

.ims-sidebar li.active {
    background: rgba(255,255,255,0.08);
}


.ims-sidebar li.active,
.ims-sidebar li:hover {
    background: #1e293b;
}

.ims-main {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}
.ims-header {
    margin-bottom: 20px;
}

.ims-content {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 20px;
}

.card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    font-size: 14px;
}

.ims-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ims-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.ims-table {
    width: 100%;
    border-collapse: collapse;
}

.ims-table th,
.ims-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}


