.goal-container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 25px;
	padding-top: 100px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.goal-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #1468a2;
}

.goal-input {
    display: flex;
    gap: 10px;
}

.goal-input input {
    flex: 1;
    padding: 10px;
    border: 2px solid #1468a2;
    border-radius: 10px;
}

.goal-input button {
    padding: 10px 15px;
    background: #1468a2;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.goal-input button:hover {
    background: #0f4f7a;
}

#goalList {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.goal-item {
    background: #f4f9ff;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.goal-item.completed {
    text-decoration: line-through;
    opacity: 0.6;
}

.goal-buttons button {
    margin-left: 8px;
    padding: 5px 8px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.complete-btn {
    background: #4CAF50;
    color: white;
}

.delete-btn {
    background: #e63946;
    color: white;
}

/* Progress Bar Styling */
.progress-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1468a2;
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1468a2, #4CAF50);
    transition: width 0.5s ease;
}

/* Updated Container for Navbar Clearance */
.skill-tracker-container {
    width: 90%;
    max-width: 700px;
    margin: 120px auto 40px; /* Space for Navbar */
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#careerSelect {
    flex: 1;
    padding: 10px;
    border: 2px solid #1468a2;
    border-radius: 10px;
    background: white;
}