@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

:root {
    --primary-color: #4285F4;
    --secondary-color: #34A853;
    --background-color: #FFFFFF;
    --text-color: #202124;
    --border-color: #DADCE0;
    --hover-color: #F1F3F4;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 60px 0 0 0;
    background-color: #f0f0f0;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

button, .back-to-main {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 8px;
    /*font-size: 16px;*/
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover, .back-to-main:hover {
    background-color: #3367D6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.no-container {
    width: 80%;
    max-width: 1200px;
    margin: 30px auto;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.no-menu {
    text-align: center;
    font-size: 24px;
    color: #666;
    line-height: 1.5;
}

.image-center {
    text-align: center;
}

.image-center img {
    width: 35%;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .image-center img {
        width: 80%;
    }
}