/*
    *****************
    DONE BY:- Umang Sethi
    *****************
*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: large;
    font-weight: bold;
    text-transform: uppercase;
}

nav {
    background-color: #3b3a3a;
    color: white;
    display: grid;
    grid-template-columns: 30% 60%;
    column-gap: 10%;
    padding: 0 5%;
}

nav .array-inputs {
    display: grid;
    grid-template-columns: 60% 40%;
    place-content: center;
    padding: 5% 0;
}

nav .array-inputs #a_size,
nav .array-inputs #a_speed {
    padding: 5% 0;
}

nav .array-inputs #a_generate {
    background-color: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 4% 0 0 20%;
}

nav .array-inputs #a_generate:hover {
    cursor: pointer;
}

nav .header_right {
    display: flex;
    flex-direction: column;
}

nav .header_right .nav-heading {
    display: inline-block;
    font-size: xxx-large;
    padding: 3% 0;
}

nav .header_right .algos {
    display: grid;
    grid-template-columns: repeat(6, 16.66667%);
    place-content: center;
    padding: 2% 0;
}

nav .header_right .algos button {
    background-color: transparent;
    border: none;
    color: white;
    outline: none;
    padding: 5% 0;
    font-size: x-large;
}

nav .header_right .algos button:hover {
    background-color: blue;
    cursor: pointer;
}

nav .header_right .algos .butt_locked {
    background-color: transparent;
    cursor: pointer;
}

nav .header_right .algos .butt_locked:hover {
    background-color: transparent;
}

nav .header_right .algos .butt_selected {
    background-color: white;
    color: green;
}

nav .header_right .algos .butt_selected:hover {
    background-color: white;
}

nav .header_right .algos .butt_unselected:hover {
    background-color: blue;
}

section {
    display: grid;
    grid-template-columns: 20% 60% 20%;
}

section .Complexity_Containers {
    margin-top: 20%;
}

section .Complexity_Containers .Pair_Definitions {
    margin-top: 20%;
}

section .Complexity_Containers .Pair_Definitions p {
    display: inline;
}

section .Complexity_Containers .Pair_Definitions p.Sub_Heading {
    font-size: medium;
    text-transform: none;
}

section #Info_Cont1,
section #Info_Cont2 {
    padding: 20% 10%;
}

section #Info_Cont1 h3,
section #Info_Cont2 h3 {
    text-decoration: underline;
}

section #array_container {
    display: flex;
    width: 100%;
    height: 70vh;
}

.hide {
    display: none;
}


/* Media Queries */

@media (max-width: 480px) {
    /* Styles for mobile devices */
}

@media (min-width: 481px) and (max-width: 1250px) {
    /* Styles for tablets */
}

@media (min-width: 1251px) {
    /* Styles for laptops and up */
}


/*
    *****************
    DONE BY:- Umang Sethi
    *****************
*/