.ticket-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    text-decoration: none;
}

.ticket-item-icon {
    display: block;
    max-width: 130px;
    overflow: hidden;
    border-radius: var(--button-border-radius);
}

.ticket-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.ticket-item-title {
    font-size: 150%;
    font-weight: 600;
}

.ticket-item-subtitle {
    font-size: 110%;
    opacity: 0.7;
}

.ticket {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}

.ticket-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-main {
    min-width: 100px;
}

.ticket-title {
    font-size: 250%;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ticket-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.ticket-checklist-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    font-size: 120%;
    font-weight: 400;
    align-items: center;
    line-height: 1.2em;
    margin-bottom: 0;
    transition: all 0.2s ease;
}

.ticket-checklist-item:hover {
    box-shadow: 0 8px 16px -2px rgba(9, 30, 66, .35), 0 0 0 1px rgba(9, 30, 66, .18);
}

.ticket-checklist-name {
    font-weight: 500;
}

.ticket-checklist-check {
    font-size: 120%;
}

.ticket-checklist-value {
    flex: 1;
    text-align: right;
}

.ticket-checklist-value-select select {
    font-size: 80%;
    font-weight: 600;
}

.ticket-checklist-value-text input {
    font-size: 80%;
    font-weight: 600;
}

.ticket-checklist-value-link {
    font-size: 70%;
    opacity: 0.5;
    white-space: nowrap;
    overflow: hidden;
}

.ticket-checklist,
.ticket-welcome-message {
    font-size: 120%;
}

.ticket-welcome-message-title {
    font-size: 120%;
    font-weight: 600;
}

.ticket-welcome-message a {
    text-decoration: underline;
}