body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #e6e6e6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    max-width: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 2px solid #00a19a;
    flex-shrink: 0;
}

.logo-container.left {
    width: 200px;
}

.innovation-logo {
    max-height: 60px;
    width: auto;
    background-color: transparent;
}

#clock {
    font-size: 72px;
    font-family: monospace;
    font-weight: bold;
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

h1 {
    width: 200px;
    color: #00a19a;
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    text-align: right;
}

#pod-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    flex: 1;
    margin-bottom: 80px;
}

.pod {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 12px;
    min-height: 200px;
}

.pod-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pod-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
}

.pod-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.pod-info p {
    margin: 0;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    line-height: 1.4;
    width: 100%;
}

.status-label {
    font-weight: bold;
    font-size: 28px;
    display: block;
    margin-bottom: 5px;
}

.status-value {
    font-size: 32px;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-value {
    font-size: 24px;
    display: block;
}

.pod-controls {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.pod-controls select,
.pod-controls input[type="text"],
.pod-controls .update-button {
    width: 90%;
    max-width: 300px;
    padding: 8px;
    margin: 0;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 16px;
}

.pod-controls select,
.pod-controls input[type="text"] {
    background-color: rgba(255, 255, 255, 0.9);
}

.update-button {
    background-color: #00a19a;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.update-button:hover {
    background-color: #008c86;
}

footer {
    height: 60px;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #e6e6e6;
    z-index: 999;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

.footer-controls {
    display: flex;
    gap: 10px;
}

#adminButton {
    background-color: #8dc63f;
    opacity: 0.9;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#adminButton:hover {
    opacity: 1;
}

.logout-button {
    background-color: #ee3124;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: none;
}

.logout-button:hover {
    background-color: #d62b1f;
}

#login-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 2px solid #00a19a;
    z-index: 1001;
    width: 300px;
}

.close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #00a19a;
    padding: 0;
}

.pod-open {
    background-color: #8dc63f;
}

.pod-closed {
    background-color: #ee3124;
}

.pod-pending {
    background-color: #ffd700;
    color: #333;
}

.pod-pending .pod-info p {
    color: #333;
}

/* Mobile responsive design */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header #clock {
        display: none !important;
    }

    .header {
        padding: 10px;
    }

    .logo-container.left {
        width: auto;
    }

    h1 {
        width: auto;
        font-size: 2em;
    }

    #pod-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 8px;
    }

    .pod {
        padding: 15px;
        min-height: auto;
    }

    .pod-number {
        font-size: 36px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .pod-info {
        gap: 10px;
    }

    .status-label {
        font-size: 22px;
        margin-bottom: 3px;
    }

    .status-value {
        font-size: 26px;
    }
    
    .comment-value {
        font-size: 20px;
    }

    .pod-controls {
        margin-top: 15px;
        padding: 10px;
    }

    .pod-controls select,
    .pod-controls input[type="text"],
    .pod-controls .update-button {
        width: 95%;
        font-size: 14px;
    }

    .innovation-logo {
        max-height: 40px;
    }

    footer {
        height: 50px;
        padding: 0 10px;
    }

    #adminButton,
    .logout-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}