@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

::-webkit-scrollbar {
    width: 0px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.dispatch-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1.5vw;
}

.dispatch-holder {
    width: 20vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    gap: 1.2vh;
    padding: 10px;
}

/* Minimalist Dispatch Item */
.dispatch-item {
    background: rgba(12, 12, 14, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid #ff7b00;
    border-radius: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.dispatch-item:hover {
    background: rgba(18, 18, 20, 1.0);
    border-color: rgba(255, 255, 255, 0.1);
}

.dispatch-item-true { border-left-color: #3182ce; }
.dispatch-item-false { border-left-color: #e53e3e; }
.dispatch-item-officer { border-left-color: #ff3333; }

.top-info-holder {
    width: 100%;
    padding: 1.2vh 1.5vh;
    display: flex;
    align-items: center;
    gap: 1vh;
    background: rgba(255, 255, 255, 0.03);
    box-sizing: border-box;
}

.call-id {
    background: #ff7b00;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.1vh;
    text-transform: uppercase;
}

.call-code {
    background: rgba(255, 123, 0, 0.15);
    color: #ffba08;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1vh;
    border: 1px solid rgba(255, 186, 8, 0.3);
}

.call-name {
    flex: 1;
    font-size: 1.25vh;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02vh;
}

.fa-map-marker-alt {
    color: #ff7b00;
    font-size: 1.8vh;
    opacity: 0.8;
}

.bottom-info-holder {
    padding: 0.5vh 1.5vh 1vh 1.5vh;
    display: flex;
    flex-direction: column;
    gap: 0.4vh;
    box-sizing: border-box;
}

.call-bottom-info {
    display: flex;
    align-items: flex-start;
    color: #a0aec0;
    font-size: 1.1vh;
    font-weight: 500;
    line-height: 1.4;
}

.call-bottom-info span {
    width: 2.2vh;
    color: #ff7b00;
    font-size: 1.15vh;
    margin-right: 0.5vh;
    display: flex;
    justify-content: center;
    padding-top: 2px;
}

/* Removed Line for Minimalism */
.line { display: none; }

/* Action Buttons */
.call-actions {
    display: flex;
    gap: 0.8vh;
    padding: 1vh 1.5vh 1.2vh 1.5vh;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.btn-mark, .btn-dismiss {
    flex: 1;
    height: 3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6vh;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1.05vh;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    padding: 0 0.8vh;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 0.05vh;
}

.btn-mark {
    background: rgba(255, 123, 0, 0.1);
    color: #ffba08;
    border-color: rgba(255, 123, 0, 0.25);
}

.btn-mark:hover {
    background: #ff7b00;
    color: #000;
    border-color: #ff7b00;
    transform: translateY(-1px);
}

.btn-mark-active {
    background: #38a169 !important;
    color: #fff !important;
    border-color: #38a169 !important;
}

.btn-dismiss {
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e0;
}

.btn-dismiss:hover {
    background: #e53e3e;
    color: #fff;
    border-color: #e53e3e;
    transform: translateY(-1px);
}

/* Marked State */
.call-marked {
    border-left-color: #38a169 !important;
    background: rgba(18, 25, 22, 1.0) !important;
}

/* Animations Overrides */
.animate__faster {
    --animate-duration: 450ms !important;
}

/* Simplified Priority */
.priority-1 {
    border-color: rgba(255, 123, 0, 0.5);
}