/* styles.css */

/* Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
}

body {
    background-color: #e3f2fd;
}

/* Header */
.dash-header {
    background-color: #e0f2fe;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-pill {
    background: #d1fadf;
    padding: 6px 12px;
    border-radius: 20px;
    color: #166534;
    font-size: 0.9rem;
}

.logo-strip img {
    height: 40px;
    margin-right: 12px;
}

.btn {
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0077aa;
    color: white;
}

.btn-primary:hover {
    background: #005f87;
}

/* ⭐ Rating panel top-right */
.rating-top-wrapper {
    max-width: 360px;
    margin: 15px 20px 0 auto;
}

#rating-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

#rating-section h3 {
    margin-bottom: 10px;
}

/* Name input */
#rating-section input[type="text"] {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

/* Stars */
.stars {
    display: flex;
    gap: 10px;
    margin: 8px 0 12px 0;
}

.star {
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
}

.star.selected {
    color: #ffcc00;
}

/* Submit button */
#rating-section button {
    width: 100%;
    margin-top: 8px;
}

/* Content */
.page-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

.project-section img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.footer-credit {
    text-align: right;
    padding: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}
