/* ========================================
   TECH STORE - COMPONENT STYLES
   ======================================== */

/* Navigation Components */
.nav-item {
    padding: 3px;
}

.user-img {
    border-radius: 50%;
    width: 25px;
}

.dropdown-menu li {
    background: #332d2d;
}

.dropdown-menu li a {
    color: #a3a0a0;
}

.dropdown-menu li a i {
    padding: 3px;
}

/* Form Components */
.reg-con {
    max-width: 600px;
    color: black;
    align-items: center;
    margin: auto;
    padding: 100px;
}

/* Button Components */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Card Components */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Modal Components */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    border-radius: 10px 10px 0 0;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 10px 10px;
}

/* Alert Components */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Breadcrumb Components */
.breadcrumb {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Components */
@media (max-width: 768px) {
    .reg-con {
        padding: 50px 20px;
    }
    
    .user-img {
        width: 20px;
    }
}
