@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    background-color: #f0f0f0;
}

.rps-container {
    border-radius: 10px;
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    text-align: center;
}

.score-container {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #e0e7ff;
    border-radius: 8px;
}

.score-display {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.selection-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

button {    
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #66a6ff;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #4d8ae6;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.selection-display-container {
    height: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.results-container {
    display: flex;
    gap: 10px;    
    justify-content: center;
}

.round-display {
    flex: 1;
    border: 3px solid #66a6ff;
    border-radius: 8px;
    text-align: center;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    background-color: #e0f0ff;
}
