/* Tyre Delta Toast Styles */
.tyre-delta-toast {
    pointer-events: auto;
    width: 800px;
    max-width: 95vw;
    background-color: #0d0d0d;
    border: 1px solid #222;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tyre-delta-toast.show {
    opacity: 1;
}

.tyre-delta-toast.showing {
    opacity: 1;
}

.tyre-delta-toast.hide {
    opacity: 0;
}

.tyre-delta-toast-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
    color: #fff;
    text-align: center;
}

.tyre-delta-header-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.tyre-delta-toast-body {
    padding: 2rem;
    background-color: #0d0d0d;
    border-radius: 0 0 12px 12px;
}

.tyre-delta-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    height: 120px;
}

.tyre-delta-card-body {
    padding: 0;
    height: 100%;
    display: flex;
    color: #fff;
}

.tyre-delta-icon-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262626;
    border-radius: 12px 0 0 12px;
    border-right: 1px solid #333;
}

.tyre-delta-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tyre-delta-icon-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tyre-delta-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

.tyre-delta-tyre-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.tyre-delta-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tyre-delta-value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: #fff;
}

.tyre-delta-positive {
    color: #ffd700;
}

.tyre-delta-negative {
    color: #10e71b;
}

.tyre-delta-neutral {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tyre-delta-toast {
        width: 95vw;
        margin: 0 2.5vw;
    }

    .tyre-delta-toast-header,
    .tyre-delta-toast-body {
        padding: 1.5rem;
    }

    .tyre-delta-card {
        height: 100px;
    }

    .tyre-delta-icon-container {
        width: 60px;
        height: 60px;
    }

    .tyre-delta-content-section {
        padding: 1rem;
    }

    .tyre-delta-tyre-name {
        font-size: 1rem;
    }

    .tyre-delta-value {
        font-size: 1.2rem;
    }
}
