/* Basic page styling */
body.size-predictor {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
    background: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.size-predictor-container {
    background: #121212;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.size-predictor-container input,
.size-predictor-container button {
    margin: 10px 0;
    padding: 10px;
    border: 2px solid #ff69b4; /* Pink border */
    border-radius: 4px;
    width: calc(100% - 24px);
    background-color: #141414; /* Dark background for fields */
    color: #ff69b4; /* Pink text color */
}

.size-predictor-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.size-predictor-container button {
    background: #ff69b4; /* Pink button background */
    color: #ffffff; /* White text */
    cursor: pointer;
}

.size-predictor-container button:hover {
    background: #ff1493; /* Darker pink on hover */
}

.size-predictor-container #result {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.size-predictor-container .graphic {
    width: 200px; /* Increase the width */
    height: 200px; /* Increase the height */
    margin: 20px auto;
    background-color: #ccc;
    background-size: contain; /* Ensure the image scales properly */
    background-repeat: no-repeat;
    background-position: center;
}
