body{
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: white;

}

.dashboard{
    justify-content: space-between; /* Distributes items horizontally */
    align-items: flex-start; /* Aligns items to the top */
    gap: 20px; /* Space between sections */
}
.quick-actions, .ai-demos, .upload-link {
    background-color: white;
    border-radius: 12px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    width: 1200px; /* Adjust width as needed */
    text-align: left;
    margin: 20px auto; /* Center horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    border: 2px solid #e5e7eb; /* Light gray border */
}

.quick-actions{
    display: flex;
    flex-direction: column; /* Ensures rows are stacked */
    gap: 20px; /* Adds vertical spacing between rows */
    
}

.quick-actions > div {
    display: flex;
    gap: 20px; /* Adds space between buttons */
    justify-content: flex-start; /* Ensures left alignment */
    padding-right: 20px; /* Adds space on the right side */

}


.ai-demos container{
    width: 1000px;
}

.quick-actions svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
    flex-shrink: 0;
}



.quick-actions h2, .ai-demos h2 {
    font-size: 1.5rem; /* Adjust heading size */
    font-weight: 600; /* Semi-bold */
    color: #333; /* Darker text for better readability */
}

.quick-actions p, .ai-demos, .upload-link p {
    font-size: 0.9rem;
    color: #666; /* Subtle text color */
    margin-top: -5px;
}

.quick-actions .grid, .ai-demos .grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for better layout */
    gap: 16px; /* Space between buttons */
    padding-top: 10px;
}

.quick-actions button {
    width: 590px;
    height: 150px;
    padding: 8px 16px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #d1d5db; /* Light gray border */
    cursor: pointer;
}

.quick-actions button:hover{
    background-color: black;
    color: white;

}
.ai-demos button {
    background: linear-gradient(to right, #9333ea, #ec4899); /* Purple to Pink */
    color: white; /* Text color */
    border: none; /* Remove default border */
    padding: 12px 24px; /* Adjust padding */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Make text bold */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.ai-demos button:hover{

    background: linear-gradient(to right, #7e22ce, #db2777); /* Darker gradient */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Increase shadow */
}

.quick-actions a, .ai-demos, .upload-link a {
    text-decoration: none;
}

.upload-link input{
    width: 600px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.upload-link input:focus {
    border-color: #6495ED; /* Change border color on focus */
    outline: none;
}

.upload-link input::placeholder {
    color: #aaa; /* Light grey placeholder text */
}

label{ 
        display: block;
        font-size: 14px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    
}

.upload-link button{
    background-color: #8FBC8F;
    font-size: 15px;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    height: 50px;
    margin-top: 20px;
    cursor: pointer;
    width: 1200px;
}

.upload-link button:hover{
    color: #8FBC8F;
    background-color: white;
}

/* main.css */
nav {
    background-color: white;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a shadow */
    height: 80px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Enable Flexbox */
    justify-content: space-between; /* Spread the items to opposite ends */
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: red;
    text-decoration: none;
    font-weight: bold;
}


nav ul li a:hover {
    color: #ddd;
}


nav ul li button:hover{
    background-color: white;
    color: red;
}

nav ul li button svg {
    margin-right: 10px; /* Add space between the icon and text */
    margin-left: 20px;
}

.custom-divider {
    height: 4px; /* h-1 (1/4 rem in Tailwind) */
    width: 40px; /* w-10 (2.5 rem in Tailwind) */
    background-color: #0a0a8c;
    border-radius: 9999px; /* Fully rounded */
    margin-right: 8px; /* mr-3 (0.75 rem in Tailwind) */
    margin-left: 8px;
    margin-top: 15px;
}
