.project-card-link-icon {
    position: absolute;
    top: -5px;
    right: 0;
    color: #a0a0a0;
    font-size: 1.2em;
    transition: color 0.3s ease;
    z-index: 10;
    padding: 5px;
}

.project-card-link-icon:hover {
    color: #009900; /* Matrix Green */
}

/* Portfolio Specific Styles */
.portfolio-projects-section {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.portfolio-projects-section h2 {
    color: #333;
    margin-bottom: 15px;
}

.portfolio-projects-section p,
.readme-content,
.timeline-content p,
.project-description {
    margin-bottom: 20px;
    font-size: 1.3em; /* Significantly increased font size for paragraph text */
    color: var(--text-color); /* Ensure text is visible against dark background */
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.button:hover {
    background-color: #0056b3;
}

.rounded-button {
    border-radius: 25px; /* Makes the button rounded */
    padding: 12px 25px;
    font-weight: bold;
}

/* GitHub-like Project Card Styles */
.project-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-card {
    background-color: #fff;
    border: 1px solid #e1e4e8; /* GitHub border color */
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
    background-color: #f6f8fa; /* Placeholder background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, cropping if necessary */
    display: block;
}

.project-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-details h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #0366d6; /* GitHub link blue */
    font-size: 1.4em;
}

.project-description {
    font-size: 0.95em;
    color: #586069; /* GitHub text color */
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.project-tech {
    font-size: 0.85em;
    color: #6a737d; /* Lighter GitHub text color */
    margin-bottom: 15px;
}

.project-link {
    align-self: flex-start; /* Align button to the start */
    background-color: #2ea44f; /* GitHub green button */
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}

.project-link:hover {
    background-color: #2c974b; /* Darker green on hover */
}

.personal-details-card,
.timeline-content,
.project-card {
    background-color: var(--background-light);
    border-radius: 10px;
    backdrop-filter: blur(10px); /* Increased blur for more glassy effect */
    -webkit-backdrop-filter: blur(10px); /* Increased blur for more glassy effect */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 0 15px var(--glow-color); /* More prominent shadow with glow */
}

.personal-details-card {
    flex: 0 0 320px;
    padding: 30px;
    color: var(--text-color);
    position: sticky;
    top: 160px;
    transition: top 0.3s ease-in-out;
}

/* Mobile-specific styles for personal details card */
@media (max-width: 768px) {
    .personal-details-card {
        /* Ensure it takes full width and is centered on mobile */
        position: relative;
        top: auto;
        left: auto;
        margin: 0; /* Remove margin to allow full width */
        z-index: auto;
        border-radius: 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 0 15px var(--glow-color);
        background-color: var(--background-light);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px; /* Adjust padding for mobile */
        width: 100%; /* Ensure the card takes full width */
        box-sizing: border-box; /* Include padding in the width calculation */
        margin-top: 60px; /* Add margin to the top for mobile */
    }

    .admin-bar .personal-details-card {
        top: auto; /* Remove admin bar adjustment */
    }

    .portfolio-content-area {
        margin-top: 0; /* No extra margin needed as card is no longer fixed */
        padding: 0; /* Remove internal padding, let .portfolio-container handle screen margins */
        box-sizing: border-box; /* Include padding in the width calculation */
        overflow-x: hidden; /* Re-add to prevent horizontal scrolling if content overflows */
    }

    .profile-avatar-wrapper {
        width: 100px; /* Smaller avatar on mobile */
        height: 100px;
    }

    .profile-name {
        font-size: 1.5em; /* Smaller name font size */
    }

    .profile-title {
        font-size: 1em; /* Smaller title font size */
    }

    .contact-info li {
        margin-bottom: 15px; /* Less spacing for contact info */
    }

    .info-icon {
        font-size: 1.4em; /* Smaller icons */
        width: 40px;
        height: 40px;
    }

    .info-label,
    .info-text a,
    .info-text span {
        font-size: 0.9em; /* Smaller font size for contact text */
    }

    .social-links {
        margin-top: 20px; /* Less margin for social links */
        gap: 15px; /* Less gap for social links */
    }

    .social-links a {
        font-size: 1.5em; /* Smaller social icons */
    }
}

.details-content {
    text-align: center;
}

.profile-header {
    position: relative;
    margin-bottom: 20px;
}

.profile-avatar-wrapper {
    position: relative;
    width: 150px; /* Match avatar width */
    height: 150px; /* Match avatar height */
    margin: 0 auto 15px; /* Center and add bottom margin */
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 20px; /* Rounded square */
    border: none; /* Removed border */
}

.profile-status {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 22px;
    height: 22px;
    background-color: #009900;
    border-radius: 50%; /* Keep status dot circular */
    border: 4px solid #2a2d32; /* Keep border for visual separation */
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 153, 0, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0, 153, 0, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 153, 0, 0.7);
    }
}

.profile-name {
    font-size: 1.7em; /* Increased font size for the name */
    margin: 0;
    color: var(--text-color);
    font-family: 'Milker', sans-serif; /* Apply Milker font */
    text-shadow: -1px 1px 0 rgba(92, 92, 92, 0.9), -2px 2px 0 rgba(92, 92, 92, 0.9), -3px 3px 0 rgba(92, 92, 92, 0.9), -4px 4px 0 rgba(92, 92, 92, 0.9), -5px 5px 0 rgba(92, 92, 92, 0.9); /* Shorter, solid 3D extension effect to the left, changed to grayish */
}

.profile-title {
    background-color: var(--background-light); /* Light background */
    border-radius: 15px;
    padding: 5px 15px;
    font-size: 1.18em;
    line-height: 0.9em; /* Reduced line spacing */
    display: inline-block;
    margin-top: 10px;
    color: var(--text-color); /* General text color */
}

.details-divider {
    border: none;
    height: 0.5px; /* Thinner divider */
    background-color: #3c3f45;
    margin: 25px 0;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 25px; /* Slightly more spacing */
}

.info-icon {
    font-size: 1.7em; /* Larger icons */
    margin-right: 20px; /* Adjusted margin for new container */
    width: 50px; /* Increased width for container */
    height: 50px; /* Added height for container */
    text-align: center;
    color: var(--text-color); /* General text color for icons */
    background-color: var(--background-light); /* More intense dark background */
    border-radius: 10px; /* Rounded corners for the container */
    display: flex; /* Use flexbox to center the icon */
    align-items: center; /* Center vertically */
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.197), 0 0 20px rgba(0, 0, 0, 0.195), 0 0 30px rgba(0, 0, 0, 0.232); /* More prominent black shadows */
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 1.1em; /* Increased font size for labels */
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 500; /* Slightly bolder label */
}

.info-text a,
.info-text span { /* Apply to both links and spans for consistency */
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600; /* Bolder text for values */
    font-size: 1.1em; /* Increased font size for email and phone */
}

.info-text a:hover {
    color: #ffffff;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px; /* More spacing between icons */
}

.social-links a {
    color: var(--text-color); /* General text color for social links */
    text-decoration: none;
    font-size: 1.8em; /* Larger icons */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.portfolio-content-area {
    flex: 1; /* Take up the remaining space */
}

@media (max-width: 768px) {
    .portfolio-content-area {
        width: 100%; /* Ensure full width on mobile */
        /* Remove any conflicting flex properties if necessary, though flex: 1 should adapt */
        box-sizing: border-box; /* Include padding in the width calculation */
        /* If still off-screen, might need to re-evaluate overflow-x */
    }
}

.portfolio-content-area .entry-header {
    border-bottom: 2px solid #009900; /* Matrix green accent line */
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.portfolio-content-area .entry-title {
    color: #ffffff;
    font-size: 2.3em; /* Decreased font size for main entry title */
           text-shadow: -1px 1px 0 rgba(0, 153, 0, 0.9), -2px 2px 0 rgba(0, 153, 0, 0.9); /* Adjusted for shorter, more subtle bottom-left angle */
    font-family: 'Milker', sans-serif; /* Apply Milker font */
}

/* Removed .portfolio-sections wrapper styles */

.section-title-outside-container {
    color: #ffffff; /* White color */
    font-size: 2.3em; /* Decreased font size */
    line-height: 0.9em; /* Reduced line spacing */
    text-shadow: -1px 1px 0 rgba(0, 153, 0, 0.9), -2px 2px 0 rgba(0, 153, 0, 0.9), -3px 3px 0 rgba(0, 153, 0, 0.9), -4px 4px 0 rgba(0, 153, 0, 0.9), -5px 5px 0 rgba(0, 153, 0, 0.9); /* Shorter, solid 3D extension effect to the left */
    border-bottom: 2px solid #009900; /* Green line under it */
    padding-bottom: 10px;
    margin-top: 40px; /* Increased space above the section title */
    margin-bottom: 20px; /* Space between title and container */
    display: block; /* Changed to block to force new line and extend border */
    width: 100%; /* Extend border to full width */
    font-family: 'Milker', sans-serif; /* Apply Milker font */
    box-sizing: border-box; /* Ensure padding is included in width */
}

/* Removed .portfolio-section styles as containers are removed */

/* Skills Section Styles */
/* Skills Section Styles */
.skill-category-title {
    color: #ffffff; /* White color */
    font-size: 1.5em; /* Smaller font size than main headers */
    text-shadow: -1px 1px 0 rgba(0, 153, 0, 0.9), -2px 2px 0 rgba(0, 153, 0, 0.9), -3px 3px 0 rgba(0, 153, 0, 0.9), -4px 4px 0 rgba(0, 153, 0, 0.9), -5px 5px 0 rgba(0, 153, 0, 0.9); /* Shorter, solid 3D extension effect to the left */
    border-bottom: 2px solid #009900; /* Green line under it */
    padding-bottom: 10px;
    margin-top: 30px; /* Space above the category title */
    margin-bottom: 20px; /* Space between title and container */
    display: inline-block; /* Reverted to inline-block */
    /* Removed width: 100%; */
    font-family: 'Milker', sans-serif; /* Apply Milker font */
    box-sizing: border-box; /* Ensure padding is included in width */
}

@media (max-width: 768px) {
    .section-title-outside-container,
    .skill-category-title {
        text-shadow: none; /* Remove text-shadow on mobile */
        width: 100%; /* Ensure full width */
        max-width: 100%; /* Ensure it doesn't exceed parent width */
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        text-align: center; /* Center the titles on mobile */
    }

    .portfolio-projects-section p,
    .readme-content,
    .timeline-content p,
    .project-description {
        word-wrap: break-word; /* Ensure long words break */
        overflow-wrap: break-word; /* For better browser compatibility */
    }

    .repo-grid { /* This is the container for project cards */
        grid-template-columns: 1fr; /* Single column layout for project cards on mobile */
        padding: 0; /* Remove horizontal padding, if any */
    }

    .skills-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust min-width for skills list on mobile */
        padding: 0; /* Remove horizontal padding */
    }

    .timeline-column {
        padding-left: 0; /* Remove left padding from timeline column */
    }

    .timeline-icon {
        left: 0; /* Adjust icon position to be within the flow */
        margin-right: 15px; /* Add margin to separate from content */
        position: relative; /* Make it relative for normal flow */
    }

    .timeline-item {
        display: flex; /* Use flex to align icon and content */
        align-items: flex-start;
        flex-direction: row; /* Ensure row direction for icon and content */
    }

    .timeline-content {
        padding-left: 0; /* Remove specific padding for timeline content */
        width: auto; /* Allow width to adjust */
    }
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid; /* Display in a grid layout */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid for skill items */
    gap: 10px; /* Space between skill pills */
    margin-bottom: 30px; /* Space below the list */
}

@media (max-width: 768px) {
    .skills-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Allow multiple columns on mobile, min 100px */
        padding: 0; /* Remove horizontal padding, now handled by portfolio-content-area */
    }

    .skill-item {
        width: auto; /* Allow width to be determined by grid */
        box-sizing: border-box; /* Include padding in width calculation */
    }
}

.skill-item {
    background-color: rgb(30 30 31); /* Updated background color */
    color: var(--text-color); /* General text color */
    border: none; /* Removed white outline */
    padding: 12px 18px; /* Adjusted padding */
    border-radius: 8px; /* Slightly less rounded corners */
    font-size: 1.3em; /* Increased font size */
    text-align: center; /* Centered text */
    text-shadow: none; /* Remove green text shadows */
    display: flex; /* Use flexbox for content alignment */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 10px rgba(30, 30, 31, 0.3); /* Softer, more prominent shadow with new color glow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.skill-item:hover {
    background-color: rgba(30, 30, 31, 0.2); /* More opaque background on hover */
    color: var(--text-color); /* Keep text color white on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(30, 30, 31, 0.5); /* Enhanced shadow and glow on hover */
}

/* Resume Section Timeline */
.timeline {
    display: flex;
    gap: 30px;
    margin-top: 30px; /* Add top margin to separate from headings */
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column; /* Stack columns vertically on mobile */
        gap: 0; /* Remove gap when stacked */
    }

    .timeline-column {
        padding-left: 0 !important; /* Remove padding for mobile */
    }

    .timeline-column::before {
        display: none !important; /* Hide the vertical line on mobile */
    }

    .timeline-icon {
        display: none !important; /* Hide the timeline icons on mobile */
    }

    .timeline-item {
        display: flex; /* Use flexbox to align icon and content */
        align-items: flex-start; /* Align items to the start */
        margin-bottom: 30px; /* Adjust spacing */
    }

    .timeline-content {
        padding-left: 0; /* Remove left padding */
        width: auto; /* Allow width to adjust */
    }
}

.timeline-column {
    flex: 1;
    position: relative;
    padding-left: 30px;
}

.timeline-column::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0; /* Start from top */
    bottom: 0; /* Extend to bottom */
    width: 2px;
    background-color: #444;
}

.timeline-column h3 {
    color: var(--text-color); /* Set color to white */
    text-shadow: none; /* Ensure no 3D effect */
}

.timeline-item {
    margin-bottom: 50px; /* Increased spacing between items */
    position: relative;
    /* Removed flexbox properties from timeline-item to allow absolute positioning of icon */
}

.timeline-icon {
    position: absolute; /* Position absolutely */
    left: -45px; /* Move icon further left, closer to the line */
    top: 0; /* Align with the top of the content */
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glow-color); /* General glow/outline color */
    color: var(--text-color); /* General text color */
    z-index: 1; /* Ensure icon is above the line */
}

.timeline-content {
    padding: 20px;
    width: 100%; /* Ensure content takes full width */
    padding-left: 45px; /* Add padding to make space for the icon */
}

.timeline-content h4 {
    margin-top: 0;
    color: var(--text-color); /* General text color */
    font-family: 'Milker', sans-serif; /* Apply Milker font */
    font-size: 1.2em; /* Biggest font size for title */
}

.timeline-content h5 {
    margin-top: 0;
    color: var(--text-color); /* General text color */
    font-family: 'Milker', sans-serif; /* Apply Milker font */
    font-size: 1.2em; /* Same font size as title for company */
}

.timeline-content p {
    margin-bottom: 10px;
    font-size: 1.4em; /* Increased font size for details */
}

.timeline-content span {
    font-size: 1.1em; /* Increased font size for date */
    color: #aaa;
}

.timeline-content .location {
    display: block;
    margin-top: 8px; /* Adjusted margin-top for placement */
    font-size: 1.1em; /* Increased font size for location */
}

/* GitHub-style Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Allow multiple columns on mobile, min 200px */
        padding: 0; /* Remove horizontal padding, now handled by portfolio-content-area */
    }

    .project-card {
        width: auto; /* Allow width to be determined by grid */
        box-sizing: border-box; /* Include padding in width calculation */
    }
}

.project-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Load More / Show More Projects Styles */
.load-more-container {
    position: relative;
    text-align: center;
    margin-top: -50px; /* Adjusted: Less negative margin to push it down slightly */
    padding-top: 80px; /* Adjusted: Padding to push content down */
    padding-bottom: 0px; /* REMOVED PADDING AT BOTTOM to fix big gap */
    z-index: 10;
    width: 100%; /* Ensure full width for centering */
    display: flex;
    justify-content: center; /* Center flex items */
    align-items: center;
}

.projects-blur-overlay {
    position: absolute;
    top: -50px; /* Start blur slightly higher */
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 30, 31, 0) 0%, var(--background-dark) 60%); /* Stronger gradient sooner */
    pointer-events: none; 
    z-index: 1;
}

.show-more-projects-btn {
    position: relative;
    z-index: 2;
    background-color: var(--background-dark); /* Solid background to cover elements behind */
    color: #fff;
    border: 1px solid #009900;
    padding: 12px 30px;
    font-size: 1.1em;
    font-family: 'Milker', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 153, 0, 0.2);
    margin: 0 auto; /* Ensure centering if display block */
}

.show-more-projects-btn:hover {
    background-color: #009900;
    box-shadow: 0 0 20px rgba(0, 153, 0, 0.5);
    transform: translateY(-2px);
}

.show-more-projects-btn i {
    margin-left: 8px;
}

/* Fade in animation for revealing cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.project-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.project-card-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: transparent; /* Ensure the header behind the logo has no background */
}

.project-logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    object-fit: contain;
    border-radius: 10%;
    background-color: transparent !important; /* Force transparent background */
}

.project-logo-placeholder {
    width: 0; /* Collapse the placeholder width */
    height: 0; /* Collapse the placeholder height */
    margin-right: 0; /* Remove margin when no logo */
    border-radius: 50%;
    background-color: transparent !important; /* Force transparent background */
}

.project-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.project-description {
    font-size: 1.1em; /* Increased font size */
    color: var(--text-color);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.project-footer {
    margin-top: auto;
}

.project-language {
    font-size: 1em; /* Increased font size */
    color: #009900; /* Matrix green */
    background-color: #3c3f45;
    padding: 5px 10px;
    border-radius: 15px;
}

.project-language p {
    margin: 0;
}

.project-meta-item {
    margin-bottom: 10px; /* Space below the meta item */
}

.project-meta-label {
    font-size: 1em; /* Consistent font size */
    color: #a0a0a0; /* Gray color for the label */
    font-weight: bold;
    display: block; /* Make it a block element to appear above the value */
    margin-bottom: 5px; /* Space between label and value */
}

.project-meta-value {
    font-size: 1em; /* Consistent font size as project-language */
    color: #009900; /* Matrix green for the value */
    background-color: #3c3f45;
    padding: 5px 10px;
    border-radius: 15px;
}

.project-tools-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column; /* Stack label and list vertically */
    flex-wrap: wrap; /* Allow tools to wrap to the next line */
    gap: 5px; /* Space between label and the list of pills */
}

.project-tools-label {
    font-size: 1em; /* Increased font size */
    color: #a0a0a0; /* Gray color for the label */
    font-weight: bold;
}

.project-tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Space between individual tool pills */
}

.project-tool-pill {
    background-color: rgba(30, 30, 31, 0.5); /* Semi-transparent dark background */
    backdrop-filter: blur(5px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(5px); /* For Safari */
    color: var(--text-color); /* White text */
    padding: 5px 12px;
    border-radius: 15px; /* Pill shape */
    font-size: 1em; /* Increased font size */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.project-tool-pill:hover {
    background-color: rgba(30, 30, 31, 0.7); /* Slightly less transparent on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}