/* Button container below the fields row */
.button-container-datasheet-contact {
    display: flex;
    justify-content: flex-start;  /* LEFT aligned */
    align-items: center;
    gap: 12px;                    /* spacing between buttons */
    text-align: left;             /* override centering */
    margin: 0;
    padding: 0;
}

.submit-btn-datasheet,
.submit-btn-call,
.submit-btn-enquire {
    margin: 0;  /* ensures NO extra spacing except the gap */
}

/* DATASHEET button class */
.submit-btn-datasheet {
    width: 178px;
    height: 54px;
    background-color: #01193d; /* dark blue */
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.6s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* ensures exact height */
}

.submit-btn-datasheet:hover {
    background-color: #00327b;
}

/* ENQUIRE-NOW button class */
.submit-btn-enquire {
    width: 178px;
    height: 54px;
    background-color: #8bc34a; /* green */
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.6s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* ensures exact height */
}

.submit-btn-enquire:hover {
    background-color: #9fe055;
}

/* CALL-US button class */
.submit-btn-call {
    width: 178px;
    height: 54px;
    background-color: #68cce1; /* light blue */
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.6s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* ensures exact height */
}

.submit-btn-call:hover {
    background-color: #76e7ff;
}

/* ========================= */
/* RESPONSIVE - UNDER 720px  */
/* ========================= */
@media (max-width: 719px) {
    .button-container-datasheet-contact {
        flex-direction: column;   /* stack vertically */
        align-items: flex-start;  /* keep left aligned */
    }

    .submit-btn-datasheet,
	.submit-btn-call,
    .submit-btn-enquire {
        width: 100%;              /* full width on small screens */
		height: 80px;
		font-size: 18px;
	}
}