/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* Form */
:root {
    --woo-font-family: vazir;
}

.woo-tracker-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #5689FD;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
    font-family: var(--woo-font-family);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woo-tracker-icon-wrapper {
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.woo-tracker-form {
    width: 75%;
    display: flex;
    flex-direction: column;
}

.woo-tracker-form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.woo-tracker-label {
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.woo-tracker-input {
    padding: 10px 14px;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: box-shadow 0.2s ease;
    text-align: center;
    background-color: #31569C;
    color: #ffffff;
}

.woo-tracker-input::placeholder {
    color: #ffffff;
}

.woo-tracker-alert a {
    text-decoration: none;
    background: #4C9926;
    padding: 7px 25px;
    border-radius: 5px;
    display: block;
    text-align: center;
}

.woo-tracker-alert a:hover {
    background: rgb(1, 95, 1);
}

.woo-tracker-btn {
    background-color: #fff;
    border: none;
    padding: 14px 0;
    color: #000;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    font-family: var(--woo-font-family);
    outline: #fff;
}

.woo-tracker-btn:hover,
.woo-tracker-btn:focus {
    background-color: #fff;
}

.woo-tracker-alert {
    margin-top: 3rem;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    display: none;
}

.woo-tracker-alert-success {
    background-color: #1B4299;
    color: #fff;
    font-weight: bold;
}

.woo-tracker-alert-error {
    background-color: #e74c3c;
    color: #fff;
    text-align: center;
}

/* Responsive */
@media (max-width: 480px) {
    .woo-tracker-form-container {
        max-width: 100%;
        padding: 20px;
    }
}



/* View Order */
.woo-tracker-info {
    max-width: 450px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px 25px;
    margin: 30px;
    font-family: var(--woo-font-family);
    color: #333333;
}

.woo-tracker-info h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 18px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 6px;
    font-family: var(--woo-font-family);
}

.woo-tracker-info dl {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.woo-tracker-info dt {
    font-weight: 700;
    margin-top: 12px;
}

.woo-tracker-info dd {
    margin-left: 0;
}

.woo-tracker-info p.special-info {
    margin-top: 22px;
    font-style: italic;
    color: #666666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 12px;
}