/* ============================================================
   VIP Progress Calculator - Shared Stylesheet
   ============================================================ */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #192c38;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    position: relative;
}

.Logo {
    width: 100px;
    height: auto;
    margin: 0 auto 50px;
    display: block;
}

.container {
    width: 450px;
    margin-top: -50px;
    padding: 20px;
    background-color: #122431;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #192c38;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
}

input, select, button {
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #192c38;
    border-radius: 4px;
    background-color: #1a2c38;
    color: #ffffff;
    width: 100%;
    outline: none;
    box-sizing: border-box;
}

input:focus, select:focus {
    border-color: #1475e1;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

button {
    background-color: #1475e1;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:hover { background-color: #105eb4; }
button:disabled { background-color: #555; cursor: not-allowed; }

.result {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    color: #ffffff;
    text-align: center;
}

.result-content { margin-bottom: 10px; }

.copy-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-container span {
    color: #ffffff;
    font-size: 16px;
}

.copy-icon {
    cursor: pointer;
    color: #1475e1;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-icon:hover { color: #105eb4; }

footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .Logo { top: 150px; width: 80px; }
    .container { width: 90%; margin-top: 120px; padding: 15px; }
    h1 { font-size: 20px; }
    .result { font-size: 16px; }
}
