/* =========================
   DA SUP REF - Create Ticket (Scoped)
========================= */
.da-sup-ref__form {
	width: 100%;
    max-width: 100%;
    background: #fff;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    padding: 25px 20px;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
}

.da-sup-ref__header {
    margin-bottom: 20px;
}

/* Title */
.da-sup-ref__title {
	font-family: "DM Sans", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3em;
    color: #1D1E20;
    margin: 0 0 8px 0;
    text-align: center;
}

/* Text */
.da-sup-ref__text {
	font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #1D1E20;
    margin-bottom: 15px;
    text-align: center;
}

/* Labels */
.da-sup-ref__label {
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #1d1e20;
}

/* Inputs */
.da-sup-ref__input,
.da-sup-ref__textarea,
.da-sup-ref__select {
    width: 100%;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #d5dfff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
}

.da-sup-ref__input:focus,
.da-sup-ref__textarea:focus,
.da-sup-ref__select:focus {
    border-color: #5025D1;
}

.da-sup-ref__select {
    width: 100%;
    margin-top: 6px;
    padding: 10px 42px 10px 14px;
    border-radius: 6px;
    border: 1px solid #d5dfff;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    color: #1D1E20;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;

    /* Remove native arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Purple DNS-style arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 7L10 12L15 7' fill='none' stroke='%23673DE6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;

    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Hover + Focus */
.da-sup-ref__select:hover,
.da-sup-ref__select:focus {
    border-color: #7253ED;
    background-color: #fff;
}

/* Remove IE arrow */
.da-sup-ref__select::-ms-expand {
    display: none;
}

.da-sup-ref__textarea {
    resize: vertical;
}

/* Priority */
.da-sup-ref__priority {
    display: flex;
    gap: 10px;
    margin-top: 6px;
	margin-bottom: 15px;
}

.da-sup-ref__radio input {
    display: none;
}

.da-sup-ref__radio span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #d5dfff;
    background: #fafbff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.da-sup-ref__radio input:checked + span {
    background: #673DE6;
    color: #fff;
    border-color: #5025D1;
}

/* Checkbox */
.da-sup-ref__checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.da-sup-ref__checkbox a {
	color: #532acb;
	transition: 350ms ease-in-out;
}
.da-sup-ref__checkbox a:hover {
	color: #532acb
}

.da-sup-ref__checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #673DE6;
    margin: 0;
}

/* Button */
.da-sup-ref__button button {
    width: 100%;
    padding: 13px 16px;
    border-radius: 6px;
    border: none;
    background: #673DE6;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.da-sup-ref__button button:hover {
    background: #532acb;
}

/* Feedback */
.da-sup-ref__feedback {
    margin-top: 15px;
    font-size: 14px;
    color: #1d1e20;
}

/* Breadcrumb */
.da-sup-ref__breadcrumb {
	font-family: "DM Sans", sans-serif;
    font-size: 15px;
    text-align: center;
    margin-bottom: 12px;
    color: #1D1E20;
}

.da-sup-ref__breadcrumb a {
    color: #1d1e20;
    text-decoration: none;
	transition: 350ms ease-in-out;
}

.da-sup-ref__breadcrumb a:hover {
    color: #673DE6;
}

.da-sup-ref__breadcrumb .separator {
    margin: 0 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .da-sup-ref__title,
    .da-sup-ref__text,
    .da-sup-ref__breadcrumb {
        text-align: left;
    }

    .da-sup-ref__input,
    .da-sup-ref__textarea {
        font-size: 16px;
    }
}