@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');


/* App.css */

:root {
    --background-color: #fff; /* Light mode background color */
    --text-color: #000; /* Light mode text color */
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #000; /* Dark mode background color */
        --text-color: #f9f9f9; /* Dark mode text color */
    }
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Noto Sans';
}

h1{
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
}
h2{
	font-size: 36px;
	line-height: 38px;
	font-weight: 700;
	font-family: "Rajdhani", sans-serif;
}
h3{
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	font-family: "Rajdhani", sans-serif;
}
h4{
	font-size: 20px;
	font-weight: 700;
}
h5{
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
}

.heading {
  text-align: center;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.form {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

.block-container {
  margin: auto;
  max-width: 922px;
}

form {
  margin: auto;
  max-width: 922px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: var(--background-color);
    color: var(--text-color);
}

a {
  color: #2b4f45;
}

a:hover {
  color: #1b332c;
}

button {
    background-color: #2b4f45;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    margin: 10px 0;
    padding: 14px 25px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

button:hover {
    background-color: #1b332c;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .form {
        padding: 15px;
    }
}

.file-upload-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
  }
  
  .file-upload-area:hover {
    background-color: #f0f0f0;
  }
  
  .file-upload-area input {
    display: none;
  }
  
  .file-names {
    margin-top: 10px;
    font-size: 14px;
  }

  .category-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .category-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #ccc; /* Add border around each icon */
    padding: 5px; /* Add padding for better spacing */
    width: 125px; /* Set a fixed width for the category icon */
  }
  
  .category-icon i {
    font-size: 77px; /* Set the size of the icon */
    width: 80%; /* Set the width of the icon container */
  }
  
  .category-icon span {
    margin-top: 5px; /* Add spacing between the icon and the category name */
  }
  
  .category-icon.selected {
    background-color: #efefe6;
    color: #2b4f45;
  }