/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #f5f5f5;
}

h1 {
    text-align: center;
    color: #333;
}

h2.shipping-header {
    color: pink;
}

h2.billing-header {
    color: purple;
}

h2.payment-header {
    color: orange;
}

/* Form Styling */
.form-section {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

input, select {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button img {
    width: 100px;
}

/* Checkbox Custom Styling */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-container input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid gray;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-container input:checked {
    background-color: blue;
    border-color: blue;
}

/* Tooltip for CVV */
.cvv-tooltip {
    position: relative;
    display: inline-block;
}

.cvv-tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cvv-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Credit Card Icons */
.card-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.card-icons img {
    width: 50px;
}

/* ePortfolio Link */
a {
    display: block;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
