/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 12-may-2023, 9:15:20
    Author     : Ander
*/

.table-wrapper {
  text-align: center;
}

#taulaid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

#materialakid {
  border: 2px solid black;
  padding: 10px;
  text-align: center; 
  vertical-align: middle;
}

#theadid {
  border: 2px solid black;
  background-color: #65AD27;
}

#thid {
  border: 2px solid black;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}