/* ::selection {
    background-color: rgba(0, 210, 255, 0.25); 
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
} */
 /* Style.css */
::selection {
    background-color: #3a7bd5; /* Tumhara Brand Cyan */
    /* color: #020617;            */
    /* color: #3a7bd5;             */
    color: #0b1120;            
    text-shadow: none;         /* Glow hata diya, clean look ke liye */
}
:root {
    --bg-dark: #0f172a27;
    --sidebar-bg: #0b1120;
    --cyan: #00d2ff;
    --blue: #3a7bd5;
    --text-main: #cbd5e1;
    --text-heading: #ffffff;
    --border-color: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    height: 4rem;
    background-color: var(--sidebar-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.navbar .logo img {
    height: 2rem;
    width: 13rem;
    margin: 10px 10px 0px 5px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--cyan);
}

.search-bar {
    border: none;
    padding: 8px 16px;
    color: black;
    border-radius: 4px;
    margin-left: 20px;
    font-weight: bold;
    width: 25rem;
    height: 2.5rem;

}
.search-bar input {
    color: black;
    background-color: gray;
}
.search-bar::placeholder {
    color: black;
    background-color: gray;
}

.layout-container {
    display: flex;
    margin-top: 60px;
    height: calc(100vh - 60px);
}


.content {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
}

.page-header h1 {
    font-size: 28px;
    color: var(--text-heading);
    margin-bottom: 5px;
}

.card {
    background-color: #1e293b;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

.card h2 {
    color: var(--cyan);
    margin-bottom: 10px;
}

.footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.tree-menu {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 10px;
}

.tree-menu ul {
    list-style-type: none;
    padding-left: 20px; /* Thoda indentation child folders ke liye */
    border-left: 1px solid #334155; /* Guidance line */
    margin-left: 10px;
    display: block; 
}

.folder-item {
    margin-top: 5px;
}

.folder-title {
    font-weight: bold;
    padding: 5px 10px;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-item {
    margin-top: 2px;
}

.file-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #cbd5e1; /* Light text */
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.file-link:hover {
    background-color: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
}

a{
    text-decoration: dashed;
}