html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.need-to-commit {
    color: white;
    animation: pulse-bg 0.8s infinite alternate;
}

@keyframes pulse-bg {
    from {
        color: white;
        background-color: rgb(255, 0, 0, 0.8);
    }

    to {
        color: black;
        background-color: #fff;
    }
}

.text-dark-nav{
    font-weight:600;
    margin-inline-end: 1rem;
}

.feedback-container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.feedback-container h2 {
    margin-bottom: 10px;
    color: #1e4356;
}

.feedback-container p {
    color: #555;
    margin-bottom: 20px;
}

.feedback-container textarea {
    width: 100%;
    height: 100px;
    resize: none;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    outline: none;
}

.feedback-container textarea:focus {
    border-color: #1e4356;
    box-shadow: 0 0 5px rgba(30, 67, 86, 0.3);
}

.rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    cursor: pointer;
}

.star {
    font-size: 28px;
    color: #ccc;
    transition: color 0.3s;
}

    .star.active {
        color: #f4b400;
    }

.FeedbackBtn {
    background: #1e4356;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

    .FeedbackBtn:hover {
        background: #163341;
    }

.thank-you {
    color: green;
    margin-top: 15px;
    font-weight: 500;
}