﻿.pcb-offer-page .pcb-form-container {
    width: 950px;
    margin: 20px auto;
    border: 2px solid lightgrey;
    padding: 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}
.pcb-offer-page .sec-title_three-heading.services-title {
    padding-left: 10px;
    border-left: 20px solid #5AB65A;
}

.pcb-offer-page .sec-title_three-heading
{
    color:black;
  /*  padding-left: 10px;
    border-left: 20px solid #FFCD00;
    position: relative;
    font-weight: 700;
    line-height: 48px;
    font-size: var(--font-42);
    text-transform: capitalize;
    margin-top: var(--margin-top-15);*/
}
/* Fix white labels */
.pcb-offer-page label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #222;
}

/* Apply only to inputs inside this page */
.pcb-offer-page input,
.pcb-offer-page select,
.pcb-offer-page textarea {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #222;
    background-color: #fff;
}

.pcb-offer-page textarea {
    height: 100px;
    resize: vertical;
}

.pcb-offer-page .checkbox-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

    .pcb-offer-page .checkbox-group label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        cursor: pointer;
        color: #222;
    }

    .pcb-offer-page .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #005df7;
        margin: 0;
    }

.pcb-offer-page .option-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .pcb-offer-page .option-group label {
        width: 140px;
        color: #222;
    }

.pcb-offer-page .options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-grow: 1;
}

    .pcb-offer-page .options button {
        padding: 8px 20px;
        border: 1px solid lightgrey;
        background: #f0f0f0;
        cursor: pointer;
        border-radius: 5px;
        color: #000;
    }

        .pcb-offer-page .options button:hover {
            background: #ddd;
        }

        .pcb-offer-page .options button.selected {
            position: relative;
            background-color: #E6F7FF;
            color: #005df7;
            border: 1px solid #005df7;
            font-weight: bold;
            overflow: hidden;
        }

            .pcb-offer-page .options button.selected::after {
                content: "✓";
                position: absolute;
                bottom: 0;
                right: 0;
                background: #005df7;
                color: white;
                font-size: 10px;
                padding: 3px 5px;
                font-weight: bold;
                clip-path: polygon(100% 0, 0 100%, 100% 100%);
            }

.pcb-offer-page .pcb-color-options button,
.pcb-offer-page .silk-color-options button {
    position: relative;
    padding-left: 30px;
}

    .pcb-offer-page .pcb-color-options button::before,
    .pcb-offer-page .silk-color-options button::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid #ccc;
    }

    .pcb-offer-page .pcb-color-options button:nth-child(1)::before {
        background-color: green;
    }

    .pcb-offer-page .pcb-color-options button:nth-child(2)::before {
        background-color: white;
        border: 1px solid black;
    }

    .pcb-offer-page .pcb-color-options button:nth-child(3)::before {
        background-color: black;
    }

    .pcb-offer-page .pcb-color-options button:nth-child(4)::before {
        background-color: red;
    }

    .pcb-offer-page .pcb-color-options button:nth-child(5)::before {
        background-color: blue;
    }

    .pcb-offer-page .silk-color-options button:nth-child(1)::before {
        background-color: white;
        border: 1px solid black;
    }

    .pcb-offer-page .silk-color-options button:nth-child(2)::before {
        background-color: black;
    }

.pcb-offer-page .other-option {
    border: 1px solid lightgrey;
    padding: 5px;
    display: inline-block;
    background: #f8f8f8;
    border-radius: 5px;
    color: red;
}

.pcb-offer-page .file-upload-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .pcb-offer-page .file-upload-container button {
        padding: 8px 12px;
        border: 1px solid lightgrey;
        background: #f0f0f0;
        cursor: pointer;
        border-radius: 5px;
        margin-bottom: 15px;
        color: #000;
    }

.pcb-offer-page .file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    margin-bottom: 15px;
}

.pcb-offer-page .submit-btn {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    border: 2px solid lightgrey;
    padding: 10px;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    color: #000;
}

    .pcb-offer-page .submit-btn:hover {
        background: #ddd;
    }

/* Swal can stay global because it belongs to popup */
.swal2-popup {
    width: 350px !important;
}

.swal2-title {
    font-size: 25px !important;
}

.swal2-content {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .pcb-offer-page .pcb-form-container {
        width: 90%;
        padding: 15px;
    }

    .pcb-offer-page .option-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

        .pcb-offer-page .option-group label {
            width: 100%;
            text-align: left;
        }

    .pcb-offer-page .options {
        flex-direction: column;
        width: 100%;
    }

        .pcb-offer-page .options button {
            width: 100%;
            text-align: center;
        }

    .pcb-offer-page .file-upload-container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .pcb-offer-page .submit-btn {
        width: 100%;
    }

    .pcb-offer-page input,
    .pcb-offer-page textarea {
        width: 100%;
        font-size: 16px;
        margin-left: 0 !important;
    }
}
