﻿/* Thumbnail images */
img.thumb {
    width: 32px;
    height: 32px;
    border-radius: 5px;
}

/* Price highlight styles */
.highlight {
    font-weight: bold;
    color: #00ff7f;
}

.loss {
    font-weight: bold;
    color: #ff4d4d;
}

/* Section Headers */
.section-header {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* General Section Spacing */
section {
    margin-bottom: 40px;
}

/* Bootstrap row tweak */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col-md-4 {
    flex: 1;
    min-width: 300px;
}

/* Blog list items */
.list-group-item {
    background-color: transparent;
    border: none;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    transition: 0.3s;
}

    .list-group-item:hover {
        transform: translateX(5px);
        color: #00e5ff;
    }

/* Card styling */
.card {
    border-radius: 12px;
   
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
    transition: 0.3s;
}

    .card:hover {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        transform: translateY(-5px);
    }

/* Paragraph text color */


/* Accent button */
.btn-accent {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: white;
    border: none;
    transition: 0.3s;
}

    .btn-accent:hover {
        background: linear-gradient(90deg, #ff5722, #ff9800);
        transform: scale(1.05);
    }

/* Hero section text animation */
.hero-title {
    animation: fadeInDown 1s ease-in-out;
}

.hero-sub {
    animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Bar */
#blogSearch {
    border-radius: 50px;
    padding-left: 15px;
    border: none;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

    #blogSearch:focus {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
        outline: none;
    }
/* Heading color */
.section-header {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Search input styling */
.blog-search {
    background: #0d0d0d;
    border: 1px solid #00aaff;
    color: #00d4ff;
    border-radius: 50px;
    padding-left: 15px;
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.3);
    transition: 0.3s;
}

    .blog-search::placeholder {
        color: #66d9ff;
    }

    .blog-search:focus {
        outline: none;
        border-color: #00d4ff;
        box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
    }

/* Toggle button styling */
.toggle-btn {
    border: 1px solid #00aaff;
    color: #00d4ff;
    border-radius: 50px;
    transition: 0.3s;
    background: transparent;
}

    .toggle-btn:hover {
        background: #00aaff;
        color: #fff;
        box-shadow: 0 0 12px rgba(0, 170, 255, 0.8);
    }