.container {
            background: #fff;
           
            max-width: 900px;
            margin: auto;
            padding: 10px;
						margin-bottom:30px;
        }
#heading{
	text-align:center;
}
        .section {
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .flex {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        input,
        select {
            padding: 0.6rem !important;
            border-radius: 6px !important;
            border: 1px solid #ccc !important;
        }
			

        button {
            background: #3a6c9c;
            color: white;
            border: none;
            cursor: pointer;
						border-radius: 6px;
        }

        button:hover {
            background: #0056b3;
        }

        .semester {
            margin-bottom: 1.5rem;
            border:1px solid #007bff;
            padding: 10px;
            border-radius:12px;
						box-sizing:border-box;
        }

        .row {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .gpa-output {
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn.remove-btn {
            background-color: red;
            margin-left: 1rem;
        }
        #semester-heading{
            color:#007bff;
						font-size:20px;
        }
.gpa-visual {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e6e6e6;
    background-image: conic-gradient(#00d09c 0deg, #e6e6e6 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333333;
    position: relative;
}


@media (max-width: 600px) {
    .row {
        flex-direction: column;
        align-items: stretch;
    }

    .row input,
    .row select,
    .row button {
        width: 100%;
    }

    .btn.remove-btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}
